1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-11-22 12:59:21 +00:00

Add padding on conversation dropdown

This commit is contained in:
Pierre HUBERT 2020-05-08 21:05:56 +02:00
parent 33eb0c5aed
commit 3835ec4fe1

View File

@ -72,7 +72,10 @@ class _ComunicTabletAppBarWidgetState
key: conversationsDropdownKey,
icon: Icon(Icons.message),
notificationsBadge: _unreadNotifications.conversations,
onBuildOverlay: (c) => UnreadConversationsScreen(),
onBuildOverlay: (c) => Padding(
padding: const EdgeInsets.all(8.0),
child: UnreadConversationsScreen(),
),
),
PopupMenuButton(itemBuilder: (c) => []),
],