Closed demetrio812 closed 6 years ago
Hi, I'll release an update of the plugin with a new property to change that line color and support for iPhone X. for now you can change that line color with the code below:
bottomNavigationLoaded(args) {
const bottomNavigation = args.object;
if (isIOS) {
bottomNavigation.ios.keyLine.backgroundColor = new Color('green').ios;
}
}
you should set that function in the loaded
event like this
<BottomNavigation
...
(loaded)="bottomNavigationLoaded($event)">
...
</BottomNavigation>
I'll let you know when the release is ready so you can forget this and use the new property to change that line color. 😄
Thanks for your support! The workaround works for now :)
@demetrio812 now you can use the keyLineColor property or tab-keyline-color css property to change the color of the top border 😄
This works perfectly! Thank you!
Hello, while using the component with a dark theme I noticed there is a white line, I am not able to remove it.
This is my css:
This is the component:
And this is the visible white line:
Thanks, Dem