2017-05-09 7 views
0

イオン1に何かがあるかどうか知りたいのですが、イオン2のShowWhen成分と同じことがあります。ShowWhen成分についての文書はhereですが、イオン1については何も見つかりません。Ionic 1のIonic 2 ShowWhenコンポーネントに相当するものはありますか?

+0

なしのが、これは、HTTPSを助けるかもしれない:// ionicframework。 com/docs/v1/platform-customization/platform-classes.html –

+0

https://ionicframework.com/docs/v1/platform-customization/dynamic-templates.html –

+1

ok私は@varunaaruruをチェックします –

答えて

0

exact showWhenはionic1では利用できません。

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

JSサンプル:しかし、あなたがドキュメントからこの

platform customisation classesこのdocs

サンプルCSSコードを使用することができます

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

これはありがとう、ありがとう –

関連する問題