mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
23 lines
470 B
HTML
23 lines
470 B
HTML
<ion-navbar *navbar>
|
|
<ion-title>
|
|
Segment under Navbar
|
|
</ion-title>
|
|
</ion-navbar>
|
|
|
|
<ion-toolbar>
|
|
<ion-segment [(ng-model)]="relationship">
|
|
<ion-segment-button value="friends" class="e2eSegmentFriends">
|
|
Friends
|
|
</ion-segment-button>
|
|
<ion-segment-button value="enemies">
|
|
Enemies
|
|
</ion-segment-button>
|
|
</ion-segment>
|
|
</ion-toolbar>
|
|
|
|
<ion-content padding>
|
|
<p>Are we friends or enemies? <b>{{ relationship }}</b></p>
|
|
|
|
|
|
</ion-content>
|