以某种方式可以使用经典的ListView禁用滚动弹跳?
<ListView [items]="countries">
<ng-template let-country="item" let-i="index" let-odd="odd" let-even="even">
<StackLayout>
</StackLayout>
</ng-template>
</ListView>
在本机视图(UITableView)上将bounces
属性设置为false
。
onLoaded(args) {
if (args.object.ios) {
args.object.ios.bounces = false;
}
}