_Yes_
Our horizontal RadListView does not work properly on iOS anymore since the latest version (3.5.10), as the items have a wrong itemWidth (or they are overlapping each other?):

This is what I am doing:
<lv:RadListView
height="50"
items="{{ myItems }}"
itemLoading="onItemLoading">
<lv:RadListView.listViewLayout>
<lv:ListViewLinearLayout scrollDirection="Horizontal"/>
</lv:RadListView.listViewLayout>
<lv:RadListView.itemTemplate>
<StackLayout orientation="horizontal">
<Button text="{{ name }}" color="yellow" backgroundColor="blue" margin="5" ios:borderRadius="5"/>
</StackLayout>
</lv:RadListView.itemTemplate>
</lv:RadListView>
myItems: new observableArrayModule.ObservableArray([
{ id: "1", name: "Item 1"},
{ id: "2", name: "Second item"},
{ id: "3", name: "Item No 3"},
{ id: "4", name: "A very long item"},
{ id: "5", name: "Item 5"}
])
Note, that this issue does not occur, when the button texts are hardcoded in the xml (without any binding to the name property).
The issue also did not occur on previous RadListView version:

_iOS_ (tested with iOS 10 & 11)
Hi @felix-idf ,
thank you for reporting this. I will take a look and update you once I have more information.
Made PR, awaiting review.
Most helpful comment
Made PR, awaiting review.