mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
24 lines
683 B
HTML
24 lines
683 B
HTML
<ion-navbar *navbar>
|
|
<ion-title>Modals</ion-title>
|
|
</ion-navbar>
|
|
|
|
<ion-content padding>
|
|
<ion-row>
|
|
<button secondary clear (click)="openBasicModal()">Open Basic Modal</button>
|
|
</ion-row>
|
|
<ion-row>
|
|
<button secondary outline (click)="openCustomAnimationModal()">Open With Custom Animation</button>
|
|
</ion-row>
|
|
<ion-row>
|
|
<ion-col>
|
|
<button secondary (click)="openModalWithParams()">Pass Params</button>
|
|
</ion-col>
|
|
<ion-col>
|
|
<ion-input floating-label style="margin-top: -10px">
|
|
<ion-label>Params</ion-label>
|
|
<input [(ng-model)]="myParam" type="text" value="">
|
|
</ion-input>
|
|
</ion-col>
|
|
</ion-row>
|
|
</ion-content>
|