Flutter 暗黑模式切换

一个简单的开关来打开暗黑模式。

darkmode

CupertinoSwitch(
    activeColor: Colors.pinkAccent,
    onChanged: (_) {
        setState(() {
            _themeNotifier.switchTheme();
        });
    },
    value: _themeNotifier.currentTheme() == ThemeMode.dark,
)

YouTube

https://www.youtube.com/channel/UCZAxPaF-1No8qKaOEBfp97w/featured

GitHub

查看 Github