I created a new project apparently it now uses Ionic 2.3.0. The problem is the scrollToBottom functionality doesn’t work on iOS on 2.3.0. Anyway I can revert the project back to Ionic 2.2.0? Thanks.
You can go into your package.json
file and change the line from:
"ionic-angular": "2.3.0",
to
"ionic-angular": "2.2.0",
Then just run, npm install
.
1 Like
Thanks so much for that quick and concise answer.