mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-22 12:59:21 +00:00
Improve widget
This commit is contained in:
parent
2c1ae783e3
commit
78e75cffdb
@ -76,15 +76,17 @@ class _NotificationsScreenState extends State<NotificationsScreen> {
|
||||
child: CircularProgressIndicator(),
|
||||
);
|
||||
|
||||
return Column(
|
||||
children: [
|
||||
Expanded(
|
||||
return Container(
|
||||
height: double.infinity,
|
||||
child: Stack(children: [
|
||||
RefreshIndicator(
|
||||
Container(
|
||||
height: double.infinity,
|
||||
child: RefreshIndicator(
|
||||
key: _refreshKey,
|
||||
child: _buildBody(),
|
||||
onRefresh: _loadList,
|
||||
),
|
||||
),
|
||||
// Add conversation button
|
||||
Positioned(
|
||||
right: 20.0,
|
||||
@ -95,8 +97,6 @@ class _NotificationsScreenState extends State<NotificationsScreen> {
|
||||
),
|
||||
),
|
||||
]),
|
||||
)
|
||||
],
|
||||
);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user