From c50b2054fe8025fd804220695e0b6f1d88e62bb7 Mon Sep 17 00:00:00 2001 From: julian Date: Wed, 16 Nov 2022 11:23:42 -0600 Subject: [PATCH] no notifications fix --- .../desktop_notifications_view.dart | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/lib/pages_desktop_specific/home/notifications/desktop_notifications_view.dart b/lib/pages_desktop_specific/home/notifications/desktop_notifications_view.dart index 0c51f899d..b9c03ff19 100644 --- a/lib/pages_desktop_specific/home/notifications/desktop_notifications_view.dart +++ b/lib/pages_desktop_specific/home/notifications/desktop_notifications_view.dart @@ -39,13 +39,20 @@ class _DesktopNotificationsViewState ), ), body: notifications.isEmpty - ? RoundedWhiteContainer( - child: Center( - child: Text( - "Notifications will appear here", - style: STextStyles.desktopTextExtraExtraSmall(context), + ? Column( + children: [ + Padding( + padding: const EdgeInsets.all(24), + child: RoundedWhiteContainer( + child: Center( + child: Text( + "Notifications will appear here", + style: STextStyles.desktopTextExtraExtraSmall(context), + ), + ), + ), ), - ), + ], ) : ListView.builder( primary: false,