mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 20:39:51 +00:00
Fixes
This commit is contained in:
parent
e08e10bc35
commit
696b808698
10 changed files with 950 additions and 848 deletions
|
@ -22,7 +22,8 @@ class BaseTextFormField extends StatelessWidget {
|
|||
this.validator,
|
||||
this.textStyle,
|
||||
this.placeholderTextStyle,
|
||||
this.maxLength});
|
||||
this.maxLength,
|
||||
this.focusNode});
|
||||
|
||||
final TextEditingController controller;
|
||||
final TextInputType keyboardType;
|
||||
|
@ -44,10 +45,12 @@ class BaseTextFormField extends StatelessWidget {
|
|||
final TextStyle placeholderTextStyle;
|
||||
final TextStyle textStyle;
|
||||
final int maxLength;
|
||||
final FocusNode focusNode;
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return TextFormField(
|
||||
focusNode: focusNode,
|
||||
controller: controller,
|
||||
keyboardType: keyboardType,
|
||||
textInputAction: textInputAction,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue