25 lines
763 B
Dart
Executable File
25 lines
763 B
Dart
Executable File
import '/flutter_flow/flutter_flow_theme.dart';
|
|
import '/flutter_flow/flutter_flow_util.dart';
|
|
import '/flutter_flow/flutter_flow_widgets.dart';
|
|
import 'setting_widget.dart' show SettingWidget;
|
|
import 'package:flutter/material.dart';
|
|
import 'package:google_fonts/google_fonts.dart';
|
|
import 'package:provider/provider.dart';
|
|
|
|
class SettingModel extends FlutterFlowModel<SettingWidget> {
|
|
/// State fields for stateful widgets in this page.
|
|
|
|
// State field(s) for SwitchListTile widget.
|
|
bool? switchListTileValue1;
|
|
// State field(s) for SwitchListTile widget.
|
|
bool? switchListTileValue2;
|
|
// State field(s) for SwitchListTile widget.
|
|
bool? switchListTileValue3;
|
|
|
|
@override
|
|
void initState(BuildContext context) {}
|
|
|
|
@override
|
|
void dispose() {}
|
|
}
|