1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-11-22 12:59:21 +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,27 +76,27 @@ class _NotificationsScreenState extends State<NotificationsScreen> {
child: CircularProgressIndicator(), child: CircularProgressIndicator(),
); );
return Column( return Container(
children: [ height: double.infinity,
Expanded( child: Stack(children: [
child: Stack(children: [ Container(
RefreshIndicator( height: double.infinity,
key: _refreshKey, child: RefreshIndicator(
child: _buildBody(), key: _refreshKey,
onRefresh: _loadList, child: _buildBody(),
), onRefresh: _loadList,
// Add conversation button ),
Positioned( ),
right: 20.0, // Add conversation button
bottom: 20.0, Positioned(
child: FloatingActionButton( right: 20.0,
onPressed: () => _deleteAllNotifications(), bottom: 20.0,
child: Icon(Icons.delete), child: FloatingActionButton(
), onPressed: () => _deleteAllNotifications(),
), child: Icon(Icons.delete),
]), ),
) ),
], ]),
); );
} }