mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-11 13:14:32 +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
|
||||
? RoundedWhiteContainer(
|
||||
? 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,
|
||||
|
|
Loading…
Reference in a new issue