Mobile adaptive updates

This commit is contained in:
2024-05-13 15:28:44 +03:00
parent 51b0cbe89b
commit e177c81f8b
6 changed files with 70 additions and 15 deletions

View File

@@ -20,4 +20,9 @@ class GymLinkProvider with ChangeNotifier {
_theme = getThemeData(Color(color), _blackTheme);
notifyListeners();
}
void setTheme(ThemeData theme) {
_theme = theme;
notifyListeners();
}
}