AuthTextField class
A field for capturing text inputs in a Flutter form.
Extends AuthField.
Constructors
- 
          AuthTextField({required String name, TextEditingController? textEditingController, Widget? title, List<String? Function(dynamic)> validators = const [], dynamic value = '', TextStyle? textStyle, dynamic onChange(String value)?, InputDecoration? textFieldDecoration, EdgeInsets padding = const EdgeInsets.all(8.0)})
- Constructs an AuthTextField object.
Properties
- hashCode → int
- 
  The hash code for this object.
  no setterinherited
- name → String
- 
  The name of the field.
  finalinherited
- onChange → (dynamic Function(String value)?)
- 
  
  final
- onValueChanged → (dynamic Function(dynamic)?)
- 
  A callback function triggered when the value of the field changes.
  finalinherited
- padding → EdgeInsets
- 
  
  final
- runtimeType → Type
- 
  A representation of the runtime type of the object.
  no setterinherited
- textController ↔ TextEditingController
- 
  
  getter/setter pair
- textFieldDecoration → InputDecoration?
- 
  
  final
- textStyle → TextStyle?
- 
  
  final
- title → Widget?
- 
  The title widget of the field.
  finalinherited
- 
  validators
  ↔ List<String? Function(dynamic)> 
- 
  A list of validation functions for the field.
  getter/setter pairinherited
- value ↔ dynamic
- 
  The initial value of the field.
  getter/setter pairinherited
Methods
- 
  build(BuildContext context, Function onValueChanged) → Widget 
- 
  Builds the widget representing the field.
  override
- 
  noSuchMethod(Invocation invocation) → dynamic 
- 
  Invoked when a nonexistent method or property is accessed.
  inherited
- 
  toString() → String 
- 
  A string representation of this object.
  inherited
Operators
- 
  operator ==(Object other) → bool 
- 
  The equality operator.
  inherited