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
Hi,
Can I implement the Android transparent status bar without super bar feature? I have tried that.But unable to do that.Please see the current functionality of my app.I have successfully implemented iOS status bar feature using native status bar plugin.But how can I do that with Android? In other words, how to change your solution to work with my use case.Thanks.
Note: I need to maintain the white background color with a fixed header (i.e. Discover is header here).
The text was updated successfully, but these errors were encountered:
Can I implement the Android transparent status bar without super bar feature?
Yes, you can do it. Please don't extend super bar placeholder to the page's style.
like this, page-home and page-language-details will have the super bar feature. If you don't need it. You just don't include it.
// src/app/app.scss
// Extend super bar placeholder for android
.platform-android {
page-home, page-language-details {
@extend %super-bar;
}
}
You can check out page-list page. (page list) An ordinary page. It has a fixed header with blue background color. In other words, we just implement the Android transparent status bar without super bar feature.
Hi,
Can I implement the Android transparent status bar without super bar feature? I have tried that.But unable to do that.Please see the current functionality of my app.I have successfully implemented iOS status bar feature using native status bar plugin.But how can I do that with Android? In other words, how to change your solution to work with my use case.Thanks.
Note: I need to maintain the white background color with a fixed header (i.e.
Discover
is header here).The text was updated successfully, but these errors were encountered: