您好我正在使用 NativeScript-Angular 为 iOS 和 Android 开发应用程序。我已经ListView
使用RadListView
插件创建了水平。一切正常,但滚动指示器不会隐藏在 iOS 中。
在 Android 中,滚动指示器是隐藏的。如何在 iOS 中解决此问题?
我的 HTML 文件:
<RadListView row="0" selectionBehavior="Press" (itemSelected)="onItemSelected($event)" #menurad class="m-t-10" row="0" height="50" [items]="allMenuList">
<ng-template tkListItemTemplate let-themenu="item" let-i="index">
<StackLayout orientation="horizontal" (tap)="menuClick(i)" >
<Label class="Selected" [text]="themenu.menuName" ></Label>
<Label width="20"></Label>
</StackLayout>
</ng-template>
<ListViewLinearLayout tkListViewLayout scrollDirection="Horizontal"></ListViewLinearLayout>
</RadListView>