mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 12:29:55 +08:00
55 lines
882 B
HTML
55 lines
882 B
HTML
|
|
<ion-navbar *navbar>
|
|
|
|
<button menuToggle="leftMenu">
|
|
<icon menu></icon>
|
|
</button>
|
|
|
|
<ion-title>
|
|
Menu
|
|
</ion-title>
|
|
|
|
<ion-buttons end>
|
|
<button>
|
|
<icon football></icon>
|
|
</button>
|
|
</ion-buttons>
|
|
|
|
<ion-buttons start>
|
|
<button>
|
|
<icon baseball></icon>
|
|
</button>
|
|
</ion-buttons>
|
|
|
|
<button menuToggle="rightMenu" right secondary>
|
|
<icon menu></icon>
|
|
</button>
|
|
|
|
</ion-navbar>
|
|
|
|
|
|
<ion-content padding>
|
|
|
|
<h3>Page 1</h3>
|
|
|
|
<p>
|
|
<button class="e2eContentToggleMenu" menuToggle="leftMenu">Toggle Left Menu</button>
|
|
</p>
|
|
|
|
<p>
|
|
<button class="e2eContentToggleMenu" menuToggle="rightMenu">Toggle Right Menu</button>
|
|
</p>
|
|
|
|
<ion-card>
|
|
<ion-input>
|
|
<ion-label>Username:</ion-label>
|
|
<input type="text">
|
|
</ion-input>
|
|
</ion-card>
|
|
|
|
<p>
|
|
<button (click)="openPopup()">Open popup</button>
|
|
</p>
|
|
|
|
</ion-content>
|