mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 17:57:40 +00:00
increase button spacing and use standard size
extAlign: TextAlign.left not workign as expected
This commit is contained in:
parent
ad80a84990
commit
827fcb0cc8
1 changed files with 4 additions and 1 deletions
|
@ -73,6 +73,7 @@ class _FusionDialogViewState extends ConsumerState<FusionDialogView> {
|
||||||
Text(
|
Text(
|
||||||
"Do you really want to cancel the fusion process?",
|
"Do you really want to cancel the fusion process?",
|
||||||
style: STextStyles.smallMed14(context),
|
style: STextStyles.smallMed14(context),
|
||||||
|
textAlign: TextAlign.left,
|
||||||
),
|
),
|
||||||
const SizedBox(height: 40),
|
const SizedBox(height: 40),
|
||||||
Row(
|
Row(
|
||||||
|
@ -80,15 +81,17 @@ class _FusionDialogViewState extends ConsumerState<FusionDialogView> {
|
||||||
Expanded(
|
Expanded(
|
||||||
child: SecondaryButton(
|
child: SecondaryButton(
|
||||||
label: "No",
|
label: "No",
|
||||||
|
buttonHeight: ButtonHeight.l,
|
||||||
onPressed: () {
|
onPressed: () {
|
||||||
Navigator.of(context).pop(false);
|
Navigator.of(context).pop(false);
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
const SizedBox(width: 8),
|
const SizedBox(width: 16),
|
||||||
Expanded(
|
Expanded(
|
||||||
child: PrimaryButton(
|
child: PrimaryButton(
|
||||||
label: "Yes",
|
label: "Yes",
|
||||||
|
buttonHeight: ButtonHeight.l,
|
||||||
onPressed: () {
|
onPressed: () {
|
||||||
Navigator.of(context).pop(true);
|
Navigator.of(context).pop(true);
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue