mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-21 21:15:24 +08:00
23 lines
566 B
HTML
23 lines
566 B
HTML
|
|
<ion-navbar *navbar>
|
|
<ion-title>Modals</ion-title>
|
|
</ion-navbar>
|
|
|
|
<ion-content padding>
|
|
<p>
|
|
<button (click)="presentModal()">Present modal, pass params</button>
|
|
</p>
|
|
<p>
|
|
<button class="e2eOpenModal" (click)="presentModalChildNav()">Present modal w/ child ion-nav</button>
|
|
</p>
|
|
<p>
|
|
<button class="e2eOpenToolbarModal" (click)="presentToolbarModal()">Present modal w/ toolbar</button>
|
|
</p>
|
|
<p>
|
|
<button (click)="presentModalCustomAnimation()">Modal: Custom Animation</button>
|
|
</p>
|
|
<p>
|
|
{{platforms | json}}
|
|
</p>
|
|
</ion-content>
|