I am using ionic framework, i want to fetch all details of current user. I have a large amount of data. I want to show progress bar on header and need to show counter (Remaining data) like downloading 1/100 and so on.
Can we run this on behind the scene and how we show.
Any idea ?
Thanks
You can show a basic progress bar - there are several implementations available for angular, which show some ramdom progress.
In Angular it's yet not possible to show the real progress with the actual numbers. You need to implement a XHR progress
handler, but this is not (yet) supported by angular.
You have to patch angular or implement your own request handler. For more information see the discussion thread.