You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
408 B

5 years ago
import 'package:flutter/foundation.dart';
class Settings {
5 years ago
bool? _isDarkMode;
5 years ago
5 years ago
bool? get isDarkMode => _isDarkMode;
5 years ago
}
5 years ago
class SettingsProvider extends Settings with ChangeNotifier {
5 years ago
void setProps({
bool? isDarkMode,
}) {
bool changed = false;
5 years ago
if (this._isDarkMode != isDarkMode) {
this._isDarkMode = isDarkMode;
5 years ago
changed = true;
}
if (changed) notifyListeners();
}
}