Add application source code and update project structure
This commit is contained in:
24
Application Product/Source/source/lib/setting/setting_model.dart
Executable file
24
Application Product/Source/source/lib/setting/setting_model.dart
Executable file
@@ -0,0 +1,24 @@
|
||||
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() {}
|
||||
}
|
||||
Reference in New Issue
Block a user