mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-10 12:44:31 +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,19 +76,23 @@ class _MyWalletState extends ConsumerState<MyWallet> {
|
||||||
? Column(
|
? Column(
|
||||||
children: [
|
children: [
|
||||||
Row(
|
Row(
|
||||||
mainAxisAlignment: MainAxisAlignment.end,
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
children: [
|
children: [
|
||||||
SecondaryButton(
|
Padding(
|
||||||
width: 200,
|
padding:
|
||||||
buttonHeight: ButtonHeight.l,
|
const EdgeInsets.fromLTRB(0, 20, 0, 0),
|
||||||
label: "Import sign config",
|
child: SecondaryButton(
|
||||||
onPressed: () {
|
width: 200,
|
||||||
Navigator.of(context).pushNamed(
|
buttonHeight: ButtonHeight.l,
|
||||||
FrostImportSignConfigView.routeName,
|
label: "Import sign config",
|
||||||
arguments: widget.walletId,
|
onPressed: () {
|
||||||
);
|
Navigator.of(context).pushNamed(
|
||||||
},
|
FrostImportSignConfigView.routeName,
|
||||||
),
|
arguments: widget.walletId,
|
||||||
|
);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
)
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
FrostSendView(
|
FrostSendView(
|
||||||
|
|
Loading…
Reference in a new issue