mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-03-12 09:27:01 +00:00
style tweak
This commit is contained in:
parent
02baf4a198
commit
abbf557b41
1 changed files with 13 additions and 11 deletions
|
@ -112,7 +112,7 @@ class _NewWalletOptionsViewState extends ConsumerState<NewWalletOptionsView> {
|
|||
),
|
||||
child: IntrinsicHeight(
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.all(16),
|
||||
padding: const EdgeInsets.symmetric(horizontal: 16),
|
||||
child: child,
|
||||
),
|
||||
),
|
||||
|
@ -129,22 +129,24 @@ class _NewWalletOptionsViewState extends ConsumerState<NewWalletOptionsView> {
|
|||
const Spacer(
|
||||
flex: 10,
|
||||
),
|
||||
if (!Util.isDesktop)
|
||||
const SizedBox(
|
||||
height: 16,
|
||||
),
|
||||
if (!Util.isDesktop)
|
||||
CoinImage(
|
||||
coin: widget.coin,
|
||||
height: 100,
|
||||
width: 100,
|
||||
),
|
||||
SizedBox(
|
||||
height: Util.isDesktop ? 0 : 16,
|
||||
),
|
||||
Text(
|
||||
"Wallet options",
|
||||
textAlign: TextAlign.center,
|
||||
style: Util.isDesktop
|
||||
? STextStyles.desktopH2(context)
|
||||
: STextStyles.pageTitleH1(context),
|
||||
),
|
||||
if (Util.isDesktop)
|
||||
Text(
|
||||
"Wallet options",
|
||||
textAlign: TextAlign.center,
|
||||
style: Util.isDesktop
|
||||
? STextStyles.desktopH2(context)
|
||||
: STextStyles.pageTitleH1(context),
|
||||
),
|
||||
SizedBox(
|
||||
height: Util.isDesktop ? 32 : 16,
|
||||
),
|
||||
|
|
Loading…
Reference in a new issue