mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 09:47:37 +00:00
address book copy icon size increase
This commit is contained in:
parent
a11b33694e
commit
1bdb673504
2 changed files with 21 additions and 17 deletions
|
@ -393,13 +393,15 @@ class _ContactDetailsViewState extends ConsumerState<ContactDetailsView> {
|
||||||
color: Theme.of(context)
|
color: Theme.of(context)
|
||||||
.extension<StackColors>()!
|
.extension<StackColors>()!
|
||||||
.textFieldDefaultBG,
|
.textFieldDefaultBG,
|
||||||
padding: const EdgeInsets.all(4),
|
padding: const EdgeInsets.all(6),
|
||||||
child: SvgPicture.asset(Assets.svg.pencil,
|
child: SvgPicture.asset(
|
||||||
width: 12,
|
Assets.svg.pencil,
|
||||||
height: 12,
|
width: 14,
|
||||||
|
height: 14,
|
||||||
color: Theme.of(context)
|
color: Theme.of(context)
|
||||||
.extension<StackColors>()!
|
.extension<StackColors>()!
|
||||||
.accentColorDark),
|
.accentColorDark,
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
const SizedBox(
|
const SizedBox(
|
||||||
|
@ -421,13 +423,15 @@ class _ContactDetailsViewState extends ConsumerState<ContactDetailsView> {
|
||||||
color: Theme.of(context)
|
color: Theme.of(context)
|
||||||
.extension<StackColors>()!
|
.extension<StackColors>()!
|
||||||
.textFieldDefaultBG,
|
.textFieldDefaultBG,
|
||||||
padding: const EdgeInsets.all(4),
|
padding: const EdgeInsets.all(6),
|
||||||
child: SvgPicture.asset(Assets.svg.copy,
|
child: SvgPicture.asset(
|
||||||
width: 12,
|
Assets.svg.copy,
|
||||||
height: 12,
|
width: 16,
|
||||||
|
height: 16,
|
||||||
color: Theme.of(context)
|
color: Theme.of(context)
|
||||||
.extension<StackColors>()!
|
.extension<StackColors>()!
|
||||||
.accentColorDark),
|
.accentColorDark,
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
|
|
|
@ -268,11 +268,11 @@ class ContactPopUp extends ConsumerWidget {
|
||||||
color: Theme.of(context)
|
color: Theme.of(context)
|
||||||
.extension<StackColors>()!
|
.extension<StackColors>()!
|
||||||
.textFieldDefaultBG,
|
.textFieldDefaultBG,
|
||||||
padding: const EdgeInsets.all(4),
|
padding: const EdgeInsets.all(6),
|
||||||
child: SvgPicture.asset(
|
child: SvgPicture.asset(
|
||||||
Assets.svg.copy,
|
Assets.svg.copy,
|
||||||
width: 12,
|
width: 16,
|
||||||
height: 12,
|
height: 16,
|
||||||
color: Theme.of(context)
|
color: Theme.of(context)
|
||||||
.extension<StackColors>()!
|
.extension<StackColors>()!
|
||||||
.accentColorDark),
|
.accentColorDark),
|
||||||
|
|
Loading…
Reference in a new issue