mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-03-26 00:58:50 +00:00
align currency prettyName with amount input
This commit is contained in:
parent
44fe0a4a0f
commit
b800dd12b4
1 changed files with 8 additions and 1 deletions
|
@ -691,9 +691,16 @@ class _BuyFormState extends ConsumerState<BuyForm> {
|
|||
const SizedBox(
|
||||
width: 15,
|
||||
),
|
||||
Text(
|
||||
"${selectedFiat?.ticker ?? 'ERR'}",
|
||||
style: STextStyles.largeMedium14(context),
|
||||
),
|
||||
const SizedBox(
|
||||
width: 12,
|
||||
),
|
||||
Expanded(
|
||||
child: Text(
|
||||
"${selectedFiat?.ticker ?? 'ERR'} ${selectedFiat?.name ?? 'Error'}",
|
||||
"${selectedFiat?.name ?? 'Error'}",
|
||||
style: STextStyles.largeMedium14(context),
|
||||
),
|
||||
),
|
||||
|
|
Loading…
Reference in a new issue