I'm currently working on an Ionic / Angular application and I've come across a situation where I need to change the scroll direction when scrolling. Usually, when you scroll down, the content moves down as well. However, I want to achieve the opposite - making the content move up when scrolling down and vice versa.
Is there a way to reverse the scroll direction?
Here is the code snippet I am using:
<!-- home page -->
<script type="text/ng-template" id=“home.html">
<ion-view ng-controller=“HomeController" title=“Home page">
<ion-content>
<ion-list>
<ion-item ng-repeat="message in messages track by $index">
{{message}}
</ion-item>
<ion-list>
</ion-content>
</ion-view>
</script>