mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 11:17:19 +08:00
46 lines
836 B
HTML
46 lines
836 B
HTML
<ion-toolbar class="android-attr">
|
|
<ion-title>
|
|
Description
|
|
</ion-title>
|
|
<ion-buttons start>
|
|
<button (click)="close()" *ng-if=" currentPlatform === 'ios' ">
|
|
Cancel
|
|
</button>
|
|
<button (click)="close()" *ng-if=" currentPlatform === 'android' ">
|
|
<icon close></icon>
|
|
</button>
|
|
</ion-buttons>
|
|
</ion-toolbar>
|
|
|
|
|
|
<ion-content class="has-header">
|
|
|
|
<ion-list>
|
|
|
|
<ion-item>
|
|
<ion-avatar item-left>
|
|
<img src="{{character.image}}">
|
|
</ion-avatar>
|
|
<h2>{{character.name}}</h2>
|
|
<p>{{character.quote}}</p>
|
|
</ion-item>
|
|
|
|
<ion-item *ng-for="#item of character['items']">
|
|
{{item.title}}
|
|
<ion-note item-right>
|
|
{{item.note}}
|
|
</ion-note>
|
|
</ion-item>
|
|
|
|
|
|
</ion-list>
|
|
|
|
</ion-content>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|