23 lines
652 B
Dart
23 lines
652 B
Dart
import '/flutter_flow/flutter_flow_util.dart';
|
|
import 'text_field_component_widget.dart' show TextFieldComponentWidget;
|
|
import 'package:flutter/material.dart';
|
|
|
|
class TextFieldComponentModel
|
|
extends FlutterFlowModel<TextFieldComponentWidget> {
|
|
/// State fields for stateful widgets in this component.
|
|
|
|
// State field(s) for TextField widget.
|
|
FocusNode? textFieldFocusNode;
|
|
TextEditingController? textController;
|
|
String? Function(BuildContext, String?)? textControllerValidator;
|
|
|
|
@override
|
|
void initState(BuildContext context) {}
|
|
|
|
@override
|
|
void dispose() {
|
|
textFieldFocusNode?.dispose();
|
|
textController?.dispose();
|
|
}
|
|
}
|