I'm writing a mobile application using nativescript-vue.
I have a list contained in a Scrollview (which is contained in a Tabview). When my app goes to this tab, I want the Scrollview to scroll down to a specific index of the list that is contained.
I tried this :
<ScrollView id="ScrollView" @loaded="onLoaded">
    <ListView for="item in items" class="list-group">
     ...
onLoaded() {         
this.$refs.page.nativeView.getViewById("ScrollView").scrollToVerticalOffset(200, false);
}
This does not work, whatever the value for the offset parameter.
Do I miss something?
Thank you in advance.
 
     
    