我在我的ionic / angular应用程序上制作了一个透明的背景tabbar。我的app.scss中有以下代码
.tabbar {
background: transparent !important;
border: none !important;
}
.tabs-ios .tabbar {
background: transparent !important;
border: none !important;
}
.ion-tabs {
background: transparent !important;
border: none !important;
}
我在浏览器中测试时效果很好,但是当我使用离子视图应用程序进行测试时,仍然会在标签页加载的第一页上显示一个库存标签栏。标签在每个其他页面上都是透明的,除了第一个页面是“主页”。
有谁知道这是为什么?这只是异常不可靠的Ionic View应用程序中的错误或我应该尝试解决的问题吗?