how to implement dark mode in flutter

后端 未结 6 2171
终归单人心
终归单人心 2021-02-05 09:05

I want to create a flutter app that has 2 light and dark mode themes that change by a switch in-app and the default theme is default android theme.
I need to pass some custo

6条回答
  •  盖世英雄少女心
    2021-02-05 09:24

    You can also use the available plugin day_night_theme_flutter

    A Flutter plugin that helps you to automatically change the theme of the app with sunrise and sunset. Just specify the light and dark theme to use, and you are all set. You can use your custom sunrise and sunset time too.

    How to use it?

    1. Add the latest version of the package in your pubspec.yaml
    2. Wrap the MaterialApp with DayNightTheme Widget.

提交回复
热议问题