v2.0.2day_night_themed_switcher
使用純 Dart 編寫的優雅日夜切換小部件,為您的應用增添魅力——因為切換明暗模式應如魔法般輕盈一瞬!
🎩✨ 使用純 Dart 實現一個簡潔的日夜切換小部件,為您的應用增添魅力——因為切換明暗模式應如魔法一閃般輕鬆!✨🌗
{"sdk":"flutter"}^2.1.0^2.0.3{"sdk":"flutter"}>=3.0.2 <7.0.0以下為英文專案原文快照,最新內容請造訪 GitHub。
Demo
🎩✨ Behold, the marvel of simplicity meets elegance: the day_night_themed_switcher crafted purely in Dart! 🌗 With this
widget, you can seamlessly toggle between the luminous radiance of daytime and the captivating allure of nighttime,
right at your fingertips.
This nifty little creation not only adds functionality but also sprinkles a touch of charm to your app interface. Let your users revel in the joy of effortlessly transitioning between light and dark modes with just a tap.
So, why settle for mundane when you can dazzle your users with the magic of day and night? Add this widget to your arsenal and watch as your app shines bright like a diamond, day or night! ✨🌞🌙
Resources:
Utilizing this Plugin is as smooth as a gentle breeze. Tailor your experience effortlessly with customizable parameters such as duration, initiallyDark, and size, allowing you to craft the perfect appearance and behavior to suit your needs. 🛠️💫
DayNightSwitch(
// duration: Duration(milliseconds: 800),
// initiallyDark: true,
size: 20,onChange: (dark) => setState(() {
if (dark) {
theme = ThemeMode.dark;
} else {
theme = ThemeMode.light;
}
}),
);