How to show the data of only respective list without showing the all data in ionic2?
Answers
Answered by
0
Given the importance of lists, the Ionic team have put a lot of effort into creating an optimised list component that has smooth scrolling, inertia, acceleration and deceleration, and everything else that gives list that nice “native” feel. This is no easy feat, but since Ionic has done the hard yards for us we can do something as simple as this:
<ion-list> <ion-item>I</ion-item> <ion-item>am</ion-item> <ion-item>a</ion-item> <ion-item>list</ion-item> </ion-list>
to create a list for our mobile apps. If you’d like to read a little more about the nitty gritty behind the scenes optimisations when it comes to lists, take a look at my more advanced article on boosting scroll performance in Ionic 2.
<ion-list> <ion-item>I</ion-item> <ion-item>am</ion-item> <ion-item>a</ion-item> <ion-item>list</ion-item> </ion-list>
to create a list for our mobile apps. If you’d like to read a little more about the nitty gritty behind the scenes optimisations when it comes to lists, take a look at my more advanced article on boosting scroll performance in Ionic 2.
Similar questions