mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
34 lines
634 B
HTML
34 lines
634 B
HTML
<ion-navbar *navbar>
|
|
|
|
<button menuToggle="left">
|
|
<ion-icon name="menu"></ion-icon>
|
|
</button>
|
|
|
|
<ion-title>
|
|
Main
|
|
</ion-title>
|
|
|
|
<button menuToggle="right" right secondary>
|
|
<ion-icon name="menu"></ion-icon>
|
|
</button>
|
|
</ion-navbar>
|
|
|
|
|
|
<ion-content padding>
|
|
|
|
<h3>Page 1</h3>
|
|
|
|
<p>Left Menu Swipe Enabled: {{ leftMenuSwipeEnabled }}</p>
|
|
|
|
<p>
|
|
<button (click)="toggleLeftMenuSwipeable()">Toggle Left Menu Swipeable</button>
|
|
</p>
|
|
|
|
<p>Right Menu Swipe Enabled: {{ rightMenuSwipeEnabled }}</p>
|
|
|
|
<p>
|
|
<button (click)="toggleRightMenuSwipeable()">Toggle Right Menu Swipeable</button>
|
|
</p>
|
|
|
|
</ion-content>
|