25 lines
758 B
Dart
25 lines
758 B
Dart
import 'package:flutterflow_ui/flutterflow_ui.dart';
|
|
import 'prompt_box_widget.dart' show PromptBoxWidget;
|
|
import 'package:easy_debounce/easy_debounce.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:google_fonts/google_fonts.dart';
|
|
import 'package:provider/provider.dart';
|
|
|
|
class PromptBoxModel extends FlutterFlowModel<PromptBoxWidget> {
|
|
/// 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();
|
|
}
|
|
}
|