🐛 Fix fab
This commit is contained in:
@@ -519,7 +519,11 @@ class ChatListScreen extends HookConsumerWidget {
|
|||||||
),
|
),
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
).padding(bottom: isWideScreen(context) ? null : 56)
|
).padding(
|
||||||
|
bottom:
|
||||||
|
(isWideScreen(context) ? 0 : 56) +
|
||||||
|
MediaQuery.of(context).padding.bottom,
|
||||||
|
)
|
||||||
: null,
|
: null,
|
||||||
appBar: AppBar(
|
appBar: AppBar(
|
||||||
flexibleSpace: Container(
|
flexibleSpace: Container(
|
||||||
|
|||||||
@@ -255,7 +255,11 @@ class ExploreScreen extends HookConsumerWidget {
|
|||||||
),
|
),
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
).padding(bottom: isWideScreen(context) ? null : 56)
|
).padding(
|
||||||
|
bottom:
|
||||||
|
(isWideScreen(context) ? 0 : 56) +
|
||||||
|
MediaQuery.of(context).padding.bottom,
|
||||||
|
)
|
||||||
: null,
|
: null,
|
||||||
body: isWide
|
body: isWide
|
||||||
? _buildWideBody(
|
? _buildWideBody(
|
||||||
|
|||||||
@@ -115,7 +115,11 @@ class RealmListScreen extends HookConsumerWidget {
|
|||||||
),
|
),
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
).padding(bottom: isWideScreen(context) ? null : 56)
|
).padding(
|
||||||
|
bottom:
|
||||||
|
(isWideScreen(context) ? 0 : 56) +
|
||||||
|
MediaQuery.of(context).padding.bottom,
|
||||||
|
)
|
||||||
: null,
|
: null,
|
||||||
body: ExtendedRefreshIndicator(
|
body: ExtendedRefreshIndicator(
|
||||||
child: realms.when(
|
child: realms.when(
|
||||||
|
|||||||
Reference in New Issue
Block a user