mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-09 20:29:57 +00:00
invert condition
This commit is contained in:
parent
d0d7843b4d
commit
c8a5a0087a
1 changed files with 1 additions and 1 deletions
|
@ -728,7 +728,7 @@ class _RestoreWalletViewState extends ConsumerState<RestoreWalletView> {
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding: const EdgeInsets.all(12.0),
|
padding: const EdgeInsets.all(12.0),
|
||||||
child: ConditionalParent(
|
child: ConditionalParent(
|
||||||
condition: !isDesktop,
|
condition: isDesktop,
|
||||||
builder: (child) => Expanded(
|
builder: (child) => Expanded(
|
||||||
child: child,
|
child: child,
|
||||||
),
|
),
|
||||||
|
|
Loading…
Reference in a new issue