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
Managed a workaround for this problem. Try adding display: -webkit-box class in case of android platform in your scrollable-tabs component in the ngAfterViewInit() method.
// set tabbar overflow-x: scroll
this.renderer.setElementStyle(this.nativeTabbar, "overflow-x", "scroll");
// set tabbar overflow-y: hidden
this.renderer.setElementStyle(this.nativeTabbar, "overflow-y", "hidden");
if (this.plt.is('android')) {
this.renderer.setElementStyle(this.nativeTabbar, 'display', '-webkit-box');
}
The tabs are overlapping and are not scrollable after the WebView update on android.
The text was updated successfully, but these errors were encountered: