We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8112be commit f73327aCopy full SHA for f73327a
lib/store/models/main_state_model.dart
@@ -1,6 +1,5 @@
1
import 'package:scoped_model/scoped_model.dart';
2
import 'user_model.dart' show UserModel;
3
-import 'theme_model.dart' show AppThemeModel;
4
import 'config_state_model.dart' show ConfigModel;
5
6
/**
@@ -12,7 +11,7 @@ import 'config_state_model.dart' show ConfigModel;
12
11
*/
13
14
///主数据模型,需要全局使用的数据在这里添加模型
15
-class MainStateModel extends Model with UserModel, AppThemeModel {
+class MainStateModel extends Model with UserModel {
16
Map<String, dynamic> state = {};
17
ConfigModel config = ConfigModel();
18
lib/store/models/theme_model.dart
0 commit comments