mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 11:41:20 +08:00
20 lines
367 B
HTML
20 lines
367 B
HTML
<ion-view nav-title="List of Items">
|
|
<ion-list>
|
|
<ion-list-header>
|
|
List Header
|
|
</ion-list-header>
|
|
|
|
<ion-item *for="#item of items">
|
|
|
|
<ion-primary-swipe-buttons>
|
|
<div style="width: 200px; background: red; height: 100%">
|
|
</div>
|
|
</ion-primary-swipe-buttons>
|
|
|
|
Item {{item}}
|
|
|
|
</ion-item>
|
|
|
|
</ion-list>
|
|
</ion-view>
|