The ListView supports to change the flow of text to the right-to-left direction by setting the FlowDirection to RightToLeft in both Vertical and Horizontal orientations. ListView supports RTL in Xamarin.Forms version 3.0 and above. It also supports RTL when device's flow direction is changed.
<ContentPage xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:syncfusion="clr-namespace:Syncfusion.ListView.XForms;assembly=Syncfusion.SfListView.XForms">
<ContentPage.Content>
<syncfusion:SfListView x:Name="listView" ItemsSource="{Binding PizzaInfo}"
Grid.Row="1"
Padding="10"
SelectionMode="None"
Orientation="Horizontal"
ItemSpacing="5,10,5,10"
FlowDirection="RightToLeft">
<syncfusion:SfListView.ItemTemplate>
<DataTemplate>
<Frame BackgroundColor="#EEEEEE" Padding="2">
<Grid RowSpacing="0" HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand">
<code>
. . .
. . .
<code>
</Grid>
</Frame>
</DataTemplate>
</syncfusion:SfListView.ItemTemplate>
</syncfusion:SfListView>
</ContentPage.Content>
</ContentPage>You can also refer our UG documentation to know more about RTL.