Skip to content

Instantly share code, notes, and snippets.

@AliAnilKocak
Created February 7, 2020 09:25
Show Gist options
  • Save AliAnilKocak/0ee15634dee37e332167c47ccb7cbe54 to your computer and use it in GitHub Desktop.
Save AliAnilKocak/0ee15634dee37e332167c47ccb7cbe54 to your computer and use it in GitHub Desktop.
ThemeNotifierr
class ThemeNotifier with ChangeNotifier {
Color _themeData;
ThemeNotifier(this._themeData);
getColor() => _themeData;
setColor(Color themeData) async {
_themeData = themeData;
notifyListeners();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment