Skip to content

Instantly share code, notes, and snippets.

@divyanshub024
Created September 28, 2019 16:55
Show Gist options
  • Select an option

  • Save divyanshub024/1e39abb67f1c1f9514ebf5c9daadffea to your computer and use it in GitHub Desktop.

Select an option

Save divyanshub024/1e39abb67f1c1f9514ebf5c9daadffea to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
class ThemeNotifier with ChangeNotifier {
ThemeData _themeData;
ThemeNotifier(this._themeData);
getTheme() => _themeData;
setTheme(ThemeData themeData) async {
_themeData = themeData;
notifyListeners();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment