28 lines
567 B
Dart
28 lines
567 B
Dart
import '/flutter_flow/flutter_flow_util.dart';
|
|
import 'preferences_page_widget.dart' show PreferencesPageWidget;
|
|
import 'package:flutter/material.dart';
|
|
|
|
class PreferencesPageModel extends FlutterFlowModel<PreferencesPageWidget> {
|
|
/// Local state fields for this page.
|
|
|
|
bool fingerprint = false;
|
|
|
|
bool? person;
|
|
|
|
bool? changPass;
|
|
|
|
bool? notify;
|
|
|
|
/// State fields for stateful widgets in this page.
|
|
|
|
final unfocusNode = FocusNode();
|
|
|
|
@override
|
|
void initState(BuildContext context) {}
|
|
|
|
@override
|
|
void dispose() {
|
|
unfocusNode.dispose();
|
|
}
|
|
}
|