mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-18 08:34:31 +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: [
|
children: [
|
||||||
Center(
|
Center(
|
||||||
child: Text(
|
child: Text(
|
||||||
"Recovery phrase QR code",
|
"Send ${trade.fromCurrency.toUpperCase()} to this address",
|
||||||
style: STextStyles.pageTitleH2,
|
style: STextStyles.pageTitleH2,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
@ -429,16 +429,16 @@ class _TradeDetailsViewState extends ConsumerState<TradeDetailsView> {
|
||||||
child: Row(
|
child: Row(
|
||||||
children: [
|
children: [
|
||||||
SvgPicture.asset(
|
SvgPicture.asset(
|
||||||
Assets.svg.pencil,
|
Assets.svg.qrcode,
|
||||||
width: 10,
|
width: 12,
|
||||||
height: 10,
|
height: 12,
|
||||||
color: StackTheme.instance.color.infoItemIcons,
|
color: StackTheme.instance.color.infoItemIcons,
|
||||||
),
|
),
|
||||||
const SizedBox(
|
const SizedBox(
|
||||||
width: 4,
|
width: 4,
|
||||||
),
|
),
|
||||||
Text(
|
Text(
|
||||||
"Edit",
|
"Show QR code",
|
||||||
style: STextStyles.link2,
|
style: STextStyles.link2,
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
|
|
Loading…
Reference in a new issue