Start a Project

Dark Mode in Flutter

Now a days, dark mode in apps have become very popular. Mostly all major apps give choice to users to switch to dark mode. Now let’s see how we can add this feature to our Flutter apps.

Flutter was build with theming, so dealing with OS level dark mode is pretty simple.

Transform your app idea into reality with our Flutter app development services.

If you check the MaterialApp widget you will see we have the theme and darkTheme parameter where we can provide the dark ThemeData in darkTheme and light ThemeData in theme if we want our app to change the theme according to the system preferences.

So here as mentioned in the widget we can set theme and darkTheme.

Below an example of main.dart representing the complete implementation:

Here, I have create a toggle button to switch theme mode using ValueNotifier.

Thanks for reading this article ❤

If I got something wrong 🙈, let me know in the comments. I would love to improve.

Exit mobile version