1.0.15 • Published 6 years ago

ion3-list v1.0.15

Weekly downloads
1
License
MIT
Repository
github
Last release
6 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

6 years ago

1.0.14

7 years ago

1.0.13

7 years ago

1.0.12

7 years ago

1.0.11

7 years ago

1.0.10

7 years ago

1.0.9

7 years ago

1.0.8

7 years ago

1.0.7

7 years ago

1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago