mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2025-02-25 19:00:45 +01:00
fix: Chat UI doesnt load
This commit is contained in:
parent
3d4decb5b5
commit
4f20ea4d64
@ -238,7 +238,7 @@ class ChatUI extends StatelessWidget {
|
|||||||
child: FutureBuilder<bool>(
|
child: FutureBuilder<bool>(
|
||||||
future: controller.getTimeline(),
|
future: controller.getTimeline(),
|
||||||
builder: (BuildContext context, snapshot) {
|
builder: (BuildContext context, snapshot) {
|
||||||
if (!snapshot.hasData) {
|
if (controller.timeline == null) {
|
||||||
return Center(
|
return Center(
|
||||||
child: CircularProgressIndicator(),
|
child: CircularProgressIndicator(),
|
||||||
);
|
);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user