[0.1.1]
This commit is contained in:
@@ -378,6 +378,7 @@ class _AstromicFieldBaseState extends State<AstromicFieldBase> {
|
||||
},
|
||||
//
|
||||
//s1 -- Configurations
|
||||
autofillHints: _config.autofillHints,
|
||||
autovalidateMode: _config.validatingMode,
|
||||
autofocus: _config.withAutofocus,
|
||||
keyboardType: _config.inputType,
|
||||
|
||||
@@ -22,6 +22,7 @@ class AstromicFieldConfiguration {
|
||||
//
|
||||
this.inputType = TextInputType.text,
|
||||
this.inputAction = TextInputAction.done,
|
||||
this.autofillHints,
|
||||
this.maxLengthEnforcement = MaxLengthEnforcement.none,
|
||||
//
|
||||
this.validatingMode,
|
||||
@@ -47,6 +48,7 @@ class AstromicFieldConfiguration {
|
||||
//
|
||||
final TextInputType inputType;
|
||||
final TextInputAction inputAction;
|
||||
final List<String>? autofillHints;
|
||||
//
|
||||
final MaxLengthEnforcement maxLengthEnforcement;
|
||||
//
|
||||
@@ -70,6 +72,7 @@ class AstromicFieldConfiguration {
|
||||
ui.TextDirection? messageDirection,
|
||||
TextInputType? inputType,
|
||||
TextInputAction? inputAction,
|
||||
List<String>? autofillHints,
|
||||
TextCapitalization? capitalizationMode,
|
||||
MaxLengthEnforcement? maxLengthEnforcement,
|
||||
AutovalidateMode? validatingMode,
|
||||
@@ -91,6 +94,7 @@ class AstromicFieldConfiguration {
|
||||
messageDirection: messageDirection ?? this.messageDirection,
|
||||
inputType: inputType ?? this.inputType,
|
||||
inputAction: inputAction ?? this.inputAction,
|
||||
autofillHints: autofillHints ?? this.autofillHints,
|
||||
maxLengthEnforcement: maxLengthEnforcement ?? this.maxLengthEnforcement,
|
||||
validatingMode: validatingMode ?? this.validatingMode,
|
||||
validator: validator ?? this.validator,
|
||||
|
||||
Reference in New Issue
Block a user