如何在Ionic 2中创建两个不同的标签布局平台(iOS tabbar botttom,Android tabbar top)?

时间:2016-09-20 01:44:09

标签: typescript ionic2

我正在尝试对Ionic代码进行编码,但我注意到带有标签模板的iOS和Android都将标签栏放在底部,我想要特定于平台。任何帮助将不胜感激,谢谢。

1 个答案:

答案 0 :(得分:0)

离子http://ionicframework.com/docs/v2/theming/platform-specific-styles/

查看本指南

我想你会在那里找到答案。使用mdios样式。

点击此链接和该指南中的链接:

ionicBootstrap(AppRoot, customProviders, {
  tabsPlacement: 'bottom',
  platforms: {
  md: {
    tabsPlacement: 'top',
  }
  ios:{
    tabsPlacement: 'bottom',
  }
});