Fixed split view

This commit is contained in:
Juan Gilsanz Polo 2023-05-02 13:42:01 +02:00
parent 954a8ad496
commit de8a7818c3
8 changed files with 66 additions and 53 deletions

View file

@ -166,9 +166,11 @@ class AppConfigProvider with ChangeNotifier {
notifyListeners();
}
void setSelectedSettingsScreen(int? screen) {
void setSelectedSettingsScreen({required int? screen, bool? notify}) {
_selectedSettingsScreen = screen;
notifyListeners();
if (notify == true) {
notifyListeners();
}
}
Future<bool> setOverrideSslCheck(bool status) async {