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(
child: Center( children: [
child: Text( Padding(
"Notifications will appear here", padding: const EdgeInsets.all(24),
style: STextStyles.desktopTextExtraExtraSmall(context), child: RoundedWhiteContainer(
child: Center(
child: Text(
"Notifications will appear here",
style: STextStyles.desktopTextExtraExtraSmall(context),
),
),
),
), ),
), ],
) )
: ListView.builder( : ListView.builder(
primary: false, primary: false,