🪐 Ceres is a comprehensive Android development framework designed to streamline your app development process. Powered by the latest technologies like Jetpack Compose, Hilt, Coroutines, and Flow, Ceres empowers developers to build modern and efficient Android applications.
This pull request introduces an improvement to the logic that determines when to display the color theme picker. Previously, the picker only showed when disableDynamicTheming was true.
Changes:
The condition for displaying the color theme picker has been expanded.
The picker will now be shown in the following scenarios:
supportsDynamicTheming() returns true (dynamic theming is supported) anddisableDynamicTheming is true (dynamic theming is disabled).
supportsDynamicTheming() returns false (dynamic theming is not supported).
This pull request introduces an improvement to the logic that determines when to display the color theme picker. Previously, the picker only showed when
disableDynamicTheming
was true.Changes:
supportsDynamicTheming()
returnstrue
(dynamic theming is supported) anddisableDynamicTheming
istrue
(dynamic theming is disabled).supportsDynamicTheming()
returnsfalse
(dynamic theming is not supported).