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;
}
}),
);