1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-23 06:53:23 +00:00

Improve widget

This commit is contained in:
Pierre HUBERT 2020-04-17 14:06:01 +02:00
parent 2c1ae783e3
commit 78e75cffdb

View File

@ -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> {
),
),
]),
)
],
);
}