-
-
Save mingsai/73571ee5ea11b88f3817ad496c913782 to your computer and use it in GitHub Desktop.
Enable/disable dark mode with Redux
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
import 'package:flutter_redux/flutter_redux.dart'; | |
import 'package:redux/redux.dart'; | |
void main() { | |
final store = | |
Store<AppState>(reducer, initialState: AppState(enableDarkMode: false)); | |
runApp(MyApp(store: store)); | |
} | |
class MyApp extends StatefulWidget { | |
const MyApp({Key key, this.store}) : super(key: key); | |
final Store<AppState> store; | |
@override | |
_MyAppState createState() => _MyAppState(); | |
} | |
class _MyAppState extends State<MyApp> with SingleTickerProviderStateMixin { | |
@override | |
Widget build(BuildContext context) { | |
final store = widget.store; | |
return StoreProvider<AppState>( | |
store: store, | |
child: AppBuilder( | |
builder: (BuildContext context) { | |
return MaterialApp( | |
theme: ThemeData( | |
brightness: store.state.enableDarkMode | |
? Brightness.dark | |
: Brightness.light), | |
home: Scaffold( | |
appBar: AppBar( | |
title: Text('Test Redux App'), | |
), | |
body: SettingsView(), | |
), | |
); | |
}, | |
), | |
); | |
} | |
} | |
class SettingsView extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return StoreBuilder(builder: (BuildContext context, Store<AppState> store) { | |
final state = store.state; | |
return SwitchListTile( | |
title: Text('Dark Mode'), | |
value: state.enableDarkMode, | |
onChanged: (value) { | |
store.dispatch(UpdateDarkMode(enable: !state.enableDarkMode)); | |
AppBuilder.of(context).rebuild(); | |
}, | |
secondary: Icon(Icons.settings), | |
); | |
}); | |
} | |
} | |
// Redux Claaes | |
class AppState { | |
AppState({this.enableDarkMode}); | |
bool enableDarkMode; | |
} | |
class UpdateDarkMode { | |
UpdateDarkMode({this.enable}); | |
final bool enable; | |
} | |
AppState reducer(AppState state, dynamic action) { | |
if (action is UpdateDarkMode) { | |
return AppState( | |
enableDarkMode: action.enable, | |
); | |
} | |
return state; | |
} | |
// App Builder | |
class AppBuilder extends StatefulWidget { | |
const AppBuilder({Key key, this.builder}) : super(key: key); | |
final Function(BuildContext) builder; | |
@override | |
AppBuilderState createState() => new AppBuilderState(); | |
static AppBuilderState of(BuildContext context) { | |
return context.ancestorStateOfType(const TypeMatcher<AppBuilderState>()); | |
} | |
} | |
class AppBuilderState extends State<AppBuilder> { | |
@override | |
Widget build(BuildContext context) { | |
return widget.builder(context); | |
} | |
void rebuild() { | |
setState(() {}); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment