From 3835ec4fe13991b12dcee90f65c89370035d34f3 Mon Sep 17 00:00:00 2001 From: Pierre HUBERT Date: Fri, 8 May 2020 21:05:56 +0200 Subject: [PATCH] Add padding on conversation dropdown --- lib/ui/widgets/tablet_mode/tablet_appbar_widget.dart | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/ui/widgets/tablet_mode/tablet_appbar_widget.dart b/lib/ui/widgets/tablet_mode/tablet_appbar_widget.dart index c946660..4b34266 100644 --- a/lib/ui/widgets/tablet_mode/tablet_appbar_widget.dart +++ b/lib/ui/widgets/tablet_mode/tablet_appbar_widget.dart @@ -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) => []), ],