mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-03 17:29:23 +00:00
QR code button fix
This commit is contained in:
parent
559da849ce
commit
41527d895b
1 changed files with 5 additions and 5 deletions
|
@ -369,7 +369,7 @@ class _TradeDetailsViewState extends ConsumerState<TradeDetailsView> {
|
|||
children: [
|
||||
Center(
|
||||
child: Text(
|
||||
"Recovery phrase QR code",
|
||||
"Send ${trade.fromCurrency.toUpperCase()} to this address",
|
||||
style: STextStyles.pageTitleH2,
|
||||
),
|
||||
),
|
||||
|
@ -429,16 +429,16 @@ class _TradeDetailsViewState extends ConsumerState<TradeDetailsView> {
|
|||
child: Row(
|
||||
children: [
|
||||
SvgPicture.asset(
|
||||
Assets.svg.pencil,
|
||||
width: 10,
|
||||
height: 10,
|
||||
Assets.svg.qrcode,
|
||||
width: 12,
|
||||
height: 12,
|
||||
color: StackTheme.instance.color.infoItemIcons,
|
||||
),
|
||||
const SizedBox(
|
||||
width: 4,
|
||||
),
|
||||
Text(
|
||||
"Edit",
|
||||
"Show QR code",
|
||||
style: STextStyles.link2,
|
||||
),
|
||||
],
|
||||
|
|
Loading…
Reference in a new issue