22 lines
501 B
Dart
22 lines
501 B
Dart
import '/flutter_flow/flutter_flow_util.dart';
|
|
import 'welcome_page_widget.dart' show WelcomePageWidget;
|
|
import 'package:flutter/material.dart';
|
|
|
|
class WelcomePageModel extends FlutterFlowModel<WelcomePageWidget> {
|
|
/// Local state fields for this page.
|
|
|
|
String toggleIdx = 'welcome';
|
|
|
|
/// State fields for stateful widgets in this page.
|
|
|
|
final unfocusNode = FocusNode();
|
|
|
|
@override
|
|
void initState(BuildContext context) {}
|
|
|
|
@override
|
|
void dispose() {
|
|
unfocusNode.dispose();
|
|
}
|
|
}
|