I am using this template on the main page of my application :
<ActionBar title="{{ 'activity_explorer' | L }}" row="0" android.icon="res://icon"
android.iconVisibilty="always">
<ActionItem icon="res://icon_plus" text="{{'menuitem_new' | L}}" (tap)="showMenuItemNew()"></ActionItem>
</ActionBar>
<GridLayout rows="*" modal-dialog-host>
<ListView row="0" [items]="_filesObservable | async">
<template let-item="item">
<GridLayout columns="1*, 7*" (tap)="processItem(item)">
<Image col="0" [src]="item.isDirectory()? 'res://folder' : 'res://file'"></Image>
<Label col="1" [text]="item.name()" textWrap="true"></Label>
</GridLayout>
</template>
</ListView>
</GridLayout>
(I am also using an external css file for the related component)
I am using Angular2 and TypeScript version.
Is there a simple way to make the listview scrollbar always visible ?
Edit : is there also a portable solution, that can work on Android as well as on IOS ?