mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-21 21:15:24 +08:00
14 lines
431 B
HTML
14 lines
431 B
HTML
<ion-navbar *navbar>
|
|
<ion-title>Toasts</ion-title>
|
|
</ion-navbar>
|
|
|
|
<ion-content padding>
|
|
<button block (click)="showToast()">Show Toast</button>
|
|
<button block (click)="showLongToast()">Show Long Toast</button>
|
|
<br />
|
|
<button block (click)="showDismissDurationToast()">Custom (1.5s) Duration</button>
|
|
<button block (click)="showToastWithCloseButton()">With closeButtonText</button>
|
|
|
|
{{ dismissMessage }}
|
|
</ion-content>
|