mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-12-23 20:09:23 +00:00
Remove new address button for xtz and xlm
This commit is contained in:
parent
46252ea930
commit
0c481f2e49
2 changed files with 16 additions and 4 deletions
|
@ -307,14 +307,20 @@ class _ReceiveViewState extends ConsumerState<ReceiveView> {
|
||||||
if (coin != Coin.epicCash &&
|
if (coin != Coin.epicCash &&
|
||||||
coin != Coin.ethereum &&
|
coin != Coin.ethereum &&
|
||||||
coin != Coin.banano &&
|
coin != Coin.banano &&
|
||||||
coin != Coin.nano)
|
coin != Coin.nano &&
|
||||||
|
coin != Coin.stellar &&
|
||||||
|
coin != Coin.stellarTestnet &&
|
||||||
|
coin != Coin.tezos)
|
||||||
const SizedBox(
|
const SizedBox(
|
||||||
height: 12,
|
height: 12,
|
||||||
),
|
),
|
||||||
if (coin != Coin.epicCash &&
|
if (coin != Coin.epicCash &&
|
||||||
coin != Coin.ethereum &&
|
coin != Coin.ethereum &&
|
||||||
coin != Coin.banano &&
|
coin != Coin.banano &&
|
||||||
coin != Coin.nano)
|
coin != Coin.nano &&
|
||||||
|
coin != Coin.stellar &&
|
||||||
|
coin != Coin.stellarTestnet &&
|
||||||
|
coin != Coin.tezos)
|
||||||
TextButton(
|
TextButton(
|
||||||
onPressed: generateNewAddress,
|
onPressed: generateNewAddress,
|
||||||
style: Theme.of(context)
|
style: Theme.of(context)
|
||||||
|
|
|
@ -219,14 +219,20 @@ class _DesktopReceiveState extends ConsumerState<DesktopReceive> {
|
||||||
if (coin != Coin.epicCash &&
|
if (coin != Coin.epicCash &&
|
||||||
coin != Coin.ethereum &&
|
coin != Coin.ethereum &&
|
||||||
coin != Coin.banano &&
|
coin != Coin.banano &&
|
||||||
coin != Coin.nano)
|
coin != Coin.nano &&
|
||||||
|
coin != Coin.stellar &&
|
||||||
|
coin != Coin.stellarTestnet &&
|
||||||
|
coin != Coin.tezos)
|
||||||
const SizedBox(
|
const SizedBox(
|
||||||
height: 20,
|
height: 20,
|
||||||
),
|
),
|
||||||
if (coin != Coin.epicCash &&
|
if (coin != Coin.epicCash &&
|
||||||
coin != Coin.ethereum &&
|
coin != Coin.ethereum &&
|
||||||
coin != Coin.banano &&
|
coin != Coin.banano &&
|
||||||
coin != Coin.nano)
|
coin != Coin.nano &&
|
||||||
|
coin != Coin.stellar &&
|
||||||
|
coin != Coin.stellarTestnet &&
|
||||||
|
coin != Coin.tezos)
|
||||||
SecondaryButton(
|
SecondaryButton(
|
||||||
buttonHeight: ButtonHeight.l,
|
buttonHeight: ButtonHeight.l,
|
||||||
onPressed: generateNewAddress,
|
onPressed: generateNewAddress,
|
||||||
|
|
Loading…
Reference in a new issue