mirror of
https://github.com/jagandeepbrar/lunasea.git
synced 2026-08-31 12:42:34 +00:00
chore(release): v5.0.0+50000019 (#439)
* fix(Android): Remove legacy external storage permission * feat(Android): Status and navigation bar now match theme colour * fix(Scaffold): Ensure back button press is captured and handled * chore(release): Update changelog
This commit is contained in:
@@ -174,6 +174,7 @@ class _State extends State<DashboardCalendarWidget> {
|
||||
children: [
|
||||
LunaMessage.inList(text: 'No New Content'),
|
||||
],
|
||||
padding: MediaQuery.of(context).padding.copyWith(top: 0.0, bottom: 8.0),
|
||||
),
|
||||
);
|
||||
return Expanded(
|
||||
|
||||
@@ -53,7 +53,10 @@ class _State extends State<_SettingsConfigurationAppearanceRoute> with LunaScrol
|
||||
subtitle: LunaText.subtitle(text: 'Pure Black Dark Theme'),
|
||||
trailing: LunaSwitch(
|
||||
value: LunaDatabaseValue.THEME_AMOLED.data,
|
||||
onChanged: (value) => LunaDatabaseValue.THEME_AMOLED.put(value),
|
||||
onChanged: (value) {
|
||||
LunaDatabaseValue.THEME_AMOLED.put(value);
|
||||
LunaTheme().initialize();
|
||||
}
|
||||
),
|
||||
),
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user