You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Auto dark and light mode base on system settings and filter state seems to be a good addition to the ease of use of the app.
Describe the solution you'd like
When global dark mode is toggled in device system settings, the app UI should also become dark, or when the blue light filter is enabled, the app UI should also be set to dark mode.
Describe alternatives you've considered
Dark mode toggle can be base on system dark mode state or battery saver mode.
Additional context
For reference, a proprietary app "Twilight" does have this feature.
The text was updated successfully, but these errors were encountered:
Overall seems like a good UX improvement. I would merge a PR implementing this. Specifically:
The "Dark Theme" toggle should be changed to a 3-item drop-down titled "Theme", where the options are [ Follow System / Light / Dark ].
Follow System should be the default.
If the device does not provide Follow System functionality (e.g. my current galaxy S6 running Android 7.0), then either make "Follow System" behave the same as Light or hide the option entirely and make Light the default.
The reason Light should be the backup is the same reason it is currently the default: although the app is intended to be used at night, you don't actually have to open the app very much, and it's much easier to see the effect of the filter over a white background than dark gray. For a similar reason, I would rather not switch the theme of the app when enabling the filter. It's cool, but you can't really compare before/after, so it hurts usability.
Implementation-wise:
Create a new key in donottranslate.xml to be the key for this preference
Add a case in RedMoonApplication#upgradeFrom to set the value of the new preference to Dark if the app was previously set to use the Dark theme.
I haven't looked in to how to get/set the system theme, whoever implements the feature will need to do that.
That's great Sir. I also have a tablet running Android 7.0. A few third-party apps are available that can enable dark mode (only works for apps that have auto light and dark mode base on system state) for this android device. So it is best to add the auto mode(base on system state or settings) for all devices even though the device doesn't have this feature.
Is your feature request related to a problem? Please describe.
Auto dark and light mode base on system settings and filter state seems to be a good addition to the ease of use of the app.
Describe the solution you'd like
When global dark mode is toggled in device system settings, the app UI should also become dark, or when the blue light filter is enabled, the app UI should also be set to dark mode.
Describe alternatives you've considered
Dark mode toggle can be base on system dark mode state or battery saver mode.
Additional context
For reference, a proprietary app "Twilight" does have this feature.
The text was updated successfully, but these errors were encountered: