no notifications fix

This commit is contained in:
julian 2022-11-16 11:23:42 -06:00
parent e9a5cc85ae
commit c50b2054fe

View file

@ -39,13 +39,20 @@ class _DesktopNotificationsViewState
), ),
), ),
body: notifications.isEmpty body: notifications.isEmpty
? RoundedWhiteContainer( ? Column(
children: [
Padding(
padding: const EdgeInsets.all(24),
child: RoundedWhiteContainer(
child: Center( child: Center(
child: Text( child: Text(
"Notifications will appear here", "Notifications will appear here",
style: STextStyles.desktopTextExtraExtraSmall(context), style: STextStyles.desktopTextExtraExtraSmall(context),
), ),
), ),
),
),
],
) )
: ListView.builder( : ListView.builder(
primary: false, primary: false,