mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-03-21 22:58:49 +00:00
no notifications fix
This commit is contained in:
parent
e9a5cc85ae
commit
c50b2054fe
1 changed files with 13 additions and 6 deletions
|
@ -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,
|
||||||
|
|
Loading…
Reference in a new issue