@@ -4,7 +4,7 @@ class NativeTextInput extends StatelessWidget {
4
4
final Widget leading, trailing;
5
5
final TextEditingController controller;
6
6
final TextInputType keyboardType;
7
- final TextInputAction kayboardAction ;
7
+ final TextInputAction keyboardAction ;
8
8
final bool autoFocus, autoCorrect, obscureText, enabled, maxLengthEnforced;
9
9
final FocusNode focusNode;
10
10
final TextAlign textAlign;
@@ -19,7 +19,7 @@ class NativeTextInput extends StatelessWidget {
19
19
this .trailing,
20
20
this .controller,
21
21
this .keyboardType = TextInputType .text,
22
- this .kayboardAction = TextInputAction .done,
22
+ this .keyboardAction = TextInputAction .done,
23
23
this .autoCorrect = true ,
24
24
this .autoFocus = false ,
25
25
this .obscureText = false ,
@@ -46,7 +46,7 @@ class NativeTextInput extends StatelessWidget {
46
46
prefix: leading,
47
47
suffix: trailing,
48
48
clearButtonMode: OverlayVisibilityMode .editing,
49
- textInputAction: kayboardAction ,
49
+ textInputAction: keyboardAction ,
50
50
keyboardType: keyboardType,
51
51
autocorrect: autoCorrect,
52
52
autofocus: autoFocus,
@@ -71,7 +71,7 @@ class NativeTextInput extends StatelessWidget {
71
71
decoration: decoration,
72
72
textCapitalization: textCapitalization,
73
73
controller: controller,
74
- textInputAction: kayboardAction ,
74
+ textInputAction: keyboardAction ,
75
75
keyboardType: keyboardType,
76
76
autocorrect: autoCorrect,
77
77
autofocus: autoFocus,
0 commit comments