mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-10 12:44:31 +00:00
pass coin as arg
This commit is contained in:
parent
9f40e11385
commit
0fddad94e6
2 changed files with 4 additions and 4 deletions
|
@ -37,7 +37,7 @@ class _BuyInWalletViewState extends State<BuyInWalletView> {
|
|||
},
|
||||
),
|
||||
title: Text(
|
||||
"Buy ",
|
||||
"Buy ${widget.coin?.ticker}",
|
||||
style: STextStyles.navBarTitle(context),
|
||||
),
|
||||
),
|
||||
|
|
|
@ -23,14 +23,14 @@ class _BuyViewState extends State<BuyView> {
|
|||
Widget build(BuildContext context) {
|
||||
debugPrint("BUILD: $runtimeType");
|
||||
|
||||
return const SafeArea(
|
||||
return SafeArea(
|
||||
child: Padding(
|
||||
padding: EdgeInsets.only(
|
||||
padding: const EdgeInsets.only(
|
||||
left: 16,
|
||||
right: 16,
|
||||
top: 16,
|
||||
),
|
||||
child: BuyForm(),
|
||||
child: BuyForm(coin: widget.coin),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue