-
Notifications
You must be signed in to change notification settings - Fork 1
Description
Hi,
appreciation for this nice app which work with Wordpress plugin for Buddypress. By using this java code sample, app is working in most cases.
I have to draw your attention regarding status bar color and its visibility in Light and Dark theme respectively.
theme.xml in values night theme
There is style for dark action bar:
style name="Theme.AquariumNetwork" parent="Theme.MaterialComponents.DayNight.DarkActionBar"
We can surely hide app status bar in dark mode with the help of below mentioned code:
style name="Theme.AquariumNetwork" parent="Theme.MaterialComponents.DayNight.NoActionBar"
But the problem is in LIGHT theme:
There is style for light action bar:
style name="Theme.AquariumNetwork" parent="Theme.MaterialComponents.DayNight.NoActionBar"
item name="android:statusBarColor">#644E94
We can not hide or change color of app status bar in light theme of app. It is just stuck with purple color on top with app name.

