The quick solution for scrolling ion content to the bottom will cover some of the views.
The main reason for this problem is that you need to click "hide" or expand the level-2 list for the product. As a result, ion-content has this problem. After several attempts, it is very easy to find a solution, as long as $ ionicScrollDelegate is injected in your controller, the following code
App. controller ('mydomaincontroller', ['$ scope', '$ http',' $ State', '$ ionicLoading', 'service', '$ ionicHistory ', '$ ionicScrollDelegate', function ($ scope, $ http, $ state, $ ionicLoading, service, $ ionicHistory, $ ionicScrollDelegate ){
After the injection is complete, you only need to notify ion-content to recalculate the width and height at the place you click. You only need to call the following method:
$ Scope. onClick = function (text) {$ ionicScrollDelegate. resize (); // Method for Calculating the width and height}
Now we have solved the problem. You can go to bed !!!