1.0.15 • Published 8 years ago

ion3-list v1.0.15

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

ion3-list

Special template list for ionic3 project.

Github

https://github.com/MiriKabrt/ion-temp-list

Install

npm install --save ion3-list

Usage

Then include the ion3-list in your module.

import { IonTempListModule } from 'ion3-list'

@NgModule({
  declarations: [
    ListPage,
  ],
  imports: [
    IonTempListModule,
    IonicPageModule.forChild(ListPage),
  ],
  exports: [
    ListPage
  ]
})
export class ListModule {}

This will create a list with infinitive scrolling (because of DOM), you can use orderBy and filter

<ion-temp-list [items]="peopleList" orderBy="name" filter="John">
    <ng-template let-item="$implicit" let-i="index">
      <button ion-item no-padding (click)="onClick(item)">
          {{item.firstName}}
      </button>
    </ng-template>
  </ion-temp-list>
1.0.15

8 years ago

1.0.14

8 years ago

1.0.13

8 years ago

1.0.12

8 years ago

1.0.11

8 years ago

1.0.10

8 years ago

1.0.9

8 years ago

1.0.8

8 years ago

1.0.7

8 years ago

1.0.6

8 years ago

1.0.5

8 years ago

1.0.4

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago