我正在尝试对Ionic代码进行编码,但我注意到带有标签模板的iOS和Android都将标签栏放在底部,我想要特定于平台。任何帮助将不胜感激,谢谢。
答案 0 :(得分:0)
离子http://ionicframework.com/docs/v2/theming/platform-specific-styles/
查看本指南我想你会在那里找到答案。使用md
和ios
样式。
点击此链接和该指南中的链接:
ionicBootstrap(AppRoot, customProviders, {
tabsPlacement: 'bottom',
platforms: {
md: {
tabsPlacement: 'top',
}
ios:{
tabsPlacement: 'bottom',
}
});