mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 20:39:51 +00:00
CWA-215 | added cryptocurrency icons to address book; applied new design to contact page; added suffixIcon parameter to base text form field; fixed seed widget
This commit is contained in:
parent
3f1bb416d4
commit
3a8bae74e4
16 changed files with 243 additions and 241 deletions
|
@ -17,6 +17,7 @@ class BaseTextFormField extends StatelessWidget {
|
|||
this.borderColor = PaletteDark.menuList,
|
||||
this.prefix,
|
||||
this.suffix,
|
||||
this.suffixIcon,
|
||||
this.enabled = true,
|
||||
this.validator
|
||||
});
|
||||
|
@ -34,6 +35,7 @@ class BaseTextFormField extends StatelessWidget {
|
|||
final Color borderColor;
|
||||
final Widget prefix;
|
||||
final Widget suffix;
|
||||
final Widget suffixIcon;
|
||||
final bool enabled;
|
||||
final FormFieldValidator<String> validator;
|
||||
|
||||
|
@ -55,6 +57,7 @@ class BaseTextFormField extends StatelessWidget {
|
|||
decoration: InputDecoration(
|
||||
prefix: prefix,
|
||||
suffix: suffix,
|
||||
suffixIcon: suffixIcon,
|
||||
hintStyle: TextStyle(
|
||||
color: hintColor,
|
||||
fontSize: 16
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue