mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-23 22:17:40 +08:00
15 lines
314 B
HTML
15 lines
314 B
HTML
<ion-navbar *navbar hide-back-button class="android-attr">
|
|
<ion-title>
|
|
Search
|
|
</ion-title>
|
|
</ion-navbar>
|
|
|
|
<ion-content>
|
|
<ion-searchbar [(ng-model)]="searchQuery"></ion-searchbar>
|
|
<ion-list #list>
|
|
<ion-item *ng-for="#item of getItems()">
|
|
{{item}}
|
|
</ion-item>
|
|
</ion-list>
|
|
</ion-content>
|