Description
RadListView will crash on scroll, while displaying elements inside the ListView's template dynamically while using v-if
.
Which platform(s) does your issue occur on?
Both
Please provide the following version numbers that your issue occurs with:
- nativescript-ui-listview: 7.0.1
- CLI: 6.0.0
- Cross-platform modules: 6.0.0
- Runtime(s): 6.0.0
Please tell us how to recreate the issue in as much detail as possible.
- Start the application
- Start scrolling up and down
Workaround
Replace v-if
with visibility
. For example:
v-if="item.isImportant"
-> :visibility="item.isImportant ? 'visible' : 'collapsed'"