Hi,
My code is below but when change the language then sflistview does not change the flowdirection.please help me to change the flow dirction in english left to right and arebic right to left or language change then scrolling dirction also change.
<Grid Grid.Row="6" VerticalOptions="Start" Padding="0,10,0,10" Margin="0" RowSpacing="0" ColumnSpacing="0" HorizontalOptions="StartAndExpand" >
<Grid.RowDefinitions>
<RowDefinition Height="*"></RowDefinition>
</Grid.RowDefinitions>
<ActivityIndicator HorizontalOptions="Center"
IsRunning="True"
IsVisible="{Binding IsBusy}" Grid.Row="0" HeightRequest="50" WidthRequest="50"/>
<listView:SfListView HeightRequest="270" ItemSize="280"
ItemsSource="{Binding HotelBannerImagesList}"
Orientation="Horizontal" Grid.Row="0" ItemSpacing="10" IsScrollBarVisible="False" FlowDirection="RightToLeft">
<listView:SfListView.ItemTemplate>
<DataTemplate>
<Frame CornerRadius="5" BorderColor="#dddddd" BackgroundColor="#f7f7f7" Padding="0" Margin="2" WidthRequest="300" HeightRequest="270" HasShadow="True" >
<Grid RowSpacing="0" ColumnSpacing="0" Margin="0" Padding="0">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition Height="Auto"></RowDefinition>
</Grid.RowDefinitions>
<ffimageloading:CachedImage Source="{Binding CityImage}" Grid.Row="0" HeightRequest="180" Aspect="AspectFill"></ffimageloading:CachedImage>
<Label Text="{Binding CityName}" Grid.Row="1" Margin="16,18,18,19" FontSize="16" TextColor="#666666" FontFamily="{Binding BoldFont}"></Label>
</Grid>
</Frame>
</DataTemplate>
</listView:SfListView.ItemTemplate>
</listView:SfListView>
</Grid>
Thanks