mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-16 17:27:37 +00:00
Editted the IconButton according to Figma
This commit is contained in:
parent
f2ec887b3a
commit
1f021b09e4
2 changed files with 28 additions and 5 deletions
|
@ -126,8 +126,19 @@ class _WalletNameFormState extends State<WalletNameForm> {
|
|||
TextPosition(offset: _controller.text.length));
|
||||
});
|
||||
},
|
||||
icon: Image.asset(
|
||||
icon: Container(
|
||||
padding: const EdgeInsets.all(7),
|
||||
decoration: BoxDecoration(
|
||||
borderRadius: BorderRadius.circular(6.0),
|
||||
color: Color.fromRGBO(91, 112, 146, 1),
|
||||
),
|
||||
width: 27.0,
|
||||
height: 27.0,
|
||||
child: Image.asset(
|
||||
'assets/images/refresh_icon.png',
|
||||
width: 14,
|
||||
height: 13,
|
||||
),
|
||||
),
|
||||
),
|
||||
hintStyle: TextStyle(
|
||||
|
|
|
@ -73,8 +73,20 @@ class WalletRestoreFromSeedFormState extends State<WalletRestoreFromSeedForm> {
|
|||
offset: nameTextEditingController.text.length));
|
||||
});
|
||||
},
|
||||
icon: Image.asset(
|
||||
icon:Container(
|
||||
padding: const EdgeInsets.all(7)
|
||||
,
|
||||
decoration: BoxDecoration(
|
||||
borderRadius: BorderRadius.circular(6.0),
|
||||
color: Color.fromRGBO(91, 112, 146, 1),),
|
||||
width: 27.0,
|
||||
height: 27.0,
|
||||
|
||||
child: Image.asset(
|
||||
'assets/images/refresh_icon.png',
|
||||
width: 14,
|
||||
height: 13,
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
|
|
Loading…
Reference in a new issue