在Ionic 1中是否有相当于Ionic 2 ShowWhen组件?

时间:2017-05-09 23:42:31

标签: ionic-framework

我想知道Ionic 1中是否有某些内容与Ionic 2中的ShowWhen组件相同。有关ShowWhen组件的文档可以找到here,但我找不到Ionic 1的任何东西。

1 个答案:

答案 0 :(得分:0)

在ionic1中没有确切的showWhen。但你可以用这个

platform customisation classes和此docs

来自docs的示例css代码:

.platform-android .bar-header {
  text-transform: uppercase;  
}

js sample:

.state('tab', {
  url: "/tab",
  abstract: true,
  controller: 'AppCtrl',
  templateUrl: function() {
    if (ionic.Platform.isAndroid()) {
        return  "templates/home-android.html";
    }
    return "templates/home.html";
  }
})