decrease res files

This commit is contained in:
lollipopkit
2023-03-11 19:02:22 +08:00
parent 5666a23e00
commit 065fd15429
30 changed files with 177 additions and 182 deletions

View File

@@ -22,7 +22,7 @@ class MyApp extends StatelessWidget {
builder: (_, colorValue, __) {
primaryColor = Color(colorValue);
return ValueListenableBuilder<int>(
valueListenable: _setting.nightMode.listenable(),
valueListenable: _setting.themeMode.listenable(),
builder: (_, mode, __) => _buildApp(mode),
);
},