Launch offer
Business website $150 USD Custom plugin $200 USD Ready in 5 days
Get a quote
Flutter

Dark and Light Mode in Flutter

Support themeMode light/dark/system with ThemeData pairs.

Dark and Light Mode in Flutter — a practical guide to Flutter dark light mode with clear examples you can reuse in real projects.

Flutter Tutorial Series (57/107). Prefer one article? Read the complete Flutter tutorial.

Short description

Persist user preference and listen to platform brightness when using system mode.

themeMode

MaterialApp(
  themeMode: ThemeMode.system,
  theme: ThemeData.light(useMaterial3: true),
  darkTheme: ThemeData.dark(useMaterial3: true),
);

Leave a reply

Your email address will not be published. Required fields are marked *