Reputation: 1505
I want to do a part of my app scrollable. But just this part. Then I use like this:
<ion-content has-footer>
<ion-scroll scrollY="true">
test test
</ion-scroll>
</ion-content>
But the test test test is not visible.
Do you know what Im doing wrong?
Thanks Best regards
Upvotes: 1
Views: 1410
Reputation: 1503
Please provide it a height, then it will be visible.
<ion-content has-footer>
<ion-scroll scrollY="true" style="height:100vh">
test test
</ion-scroll>
</ion-content>
Upvotes: 4