Ionic 3 template list with filtereing, dynamic loading dom
npm install ion3-list``bash`
npm install --save ion3-list
Then include the ion3-list in your module.
`javascript
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
`html``