mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-10 20:54:33 +00:00
center "import sign config" button
This commit is contained in:
parent
85372f8c73
commit
445fc832a3
1 changed files with 16 additions and 12 deletions
|
@ -76,9 +76,12 @@ class _MyWalletState extends ConsumerState<MyWallet> {
|
||||||
? Column(
|
? Column(
|
||||||
children: [
|
children: [
|
||||||
Row(
|
Row(
|
||||||
mainAxisAlignment: MainAxisAlignment.end,
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
children: [
|
children: [
|
||||||
SecondaryButton(
|
Padding(
|
||||||
|
padding:
|
||||||
|
const EdgeInsets.fromLTRB(0, 20, 0, 0),
|
||||||
|
child: SecondaryButton(
|
||||||
width: 200,
|
width: 200,
|
||||||
buttonHeight: ButtonHeight.l,
|
buttonHeight: ButtonHeight.l,
|
||||||
label: "Import sign config",
|
label: "Import sign config",
|
||||||
|
@ -89,6 +92,7 @@ class _MyWalletState extends ConsumerState<MyWallet> {
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
)
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
FrostSendView(
|
FrostSendView(
|
||||||
|
|
Loading…
Reference in a new issue