How to implement Dark mode and Light Mode in Flutter

Ricardo Castellanos
4 min readMar 7, 2023

Flutter is a versatile platform that allows developers to create beautiful and functional applications for both Android and iOS platforms. One of the great features of Flutter is its ability to allow for customization of the app’s theme, which includes fonts, colors, and overall style. To change the theme dynamically in Flutter, developers can use the dependency ‘adaptive_theme’. In this article, we will explore the use of adaptive_theme to change the theme of an app in Flutter.

What is adaptive_theme?

Adaptive_theme is a dependency package that allows developers to create a theme that adapts to the platform’s current theme mode. For example, if a user has set their device’s theme to dark mode, the app’s theme will automatically switch to a dark theme. Similarly, if a user has set their device’s theme to light mode, the app’s theme will switch to a light theme.

How to Use Adaptive_theme?

To use adaptive_theme, you need to add it to your pubspec.yaml file. You can do this by adding the following code to your dependencies:

dependencies:
adaptive_theme: ^1.0.0

After adding adaptive_theme to your dependencies, you can then import it into your code using the following line:

--

--