Below is my html.. for some reason it won't scroll. This happens both in Android and iPhone.
<ion-view view-title="Active">
<ion-content class="padding" style="text-align:center" scroll=true has-bouncing="true">
<table class="user-block">
<tr ng-repeat="user in userList">
<td class="field1">{{ user.field1 }}</td>
<td class="filed2">{{ user.field2 }}</td>
<td><img class="face"
ng-src="{{imageUrl}}/images/profile/{{user.facebookId}}.jpg">
</td>
</tr>
</table>
</ion-content>
</ion-view>
The table renders fine but it won't scroll. In my css, I haven't set overflow to anything so values are whatever the default ionic values are.
Is it because I am using table ? Is there some other custom ionic component that I should be using ?