mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 09:47:37 +00:00
only display address book icon for stack coins
This commit is contained in:
parent
49f024b656
commit
8ec82ee603
1 changed files with 2 additions and 1 deletions
|
@ -969,7 +969,8 @@ class _BuyFormState extends ConsumerState<BuyForm> {
|
||||||
? const ClipboardIcon()
|
? const ClipboardIcon()
|
||||||
: const XIcon(),
|
: const XIcon(),
|
||||||
),
|
),
|
||||||
if (_receiveAddressController.text.isEmpty)
|
if (_receiveAddressController.text.isEmpty &&
|
||||||
|
isStackCoin(selectedCrypto?.ticker))
|
||||||
TextFieldIconButton(
|
TextFieldIconButton(
|
||||||
key: const Key("buyViewAddressBookButtonKey"),
|
key: const Key("buyViewAddressBookButtonKey"),
|
||||||
onTap: () {
|
onTap: () {
|
||||||
|
|
Loading…
Reference in a new issue