Welcome to the Xamarin.Forms feedback portal. We’re happy you’re here! If you have feedback on how to improve the Xamarin.Forms, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
Hi,
I have noticed that starting 17.1.0.48, the CornerRadius property is not respected in iOS. On Android, it is working perfectly fine.
Please see attached couple of screenshots. It shows the behavior in 17.1.0.47 and 17.1.0.52. In new version, the corner radius are not showing.
Here is my XAML code:
<sflist:SfListView
ItemsSource="{Binding Categories}"
VerticalOptions="Fill"
HorizontalOptions="Fill"
Margin="0,0,0,0"
ItemSize="110"
SelectionMode="None">
<sflist:SfListView.ItemTemplate>
<DataTemplate>
<sfBorder:SfBorder
HorizontalOptions="FillAndExpand"
VerticalOptions="FillAndExpand"
BorderWidth="0"
Margin="8,8,8,8"
CornerRadius="12">
<Grid
HorizontalOptions="FillAndExpand"
VerticalOptions="FillAndExpand">
<!-- Category Image -->
<ffimageloading:CachedImage
VerticalOptions="FillAndExpand"
HorizontalOptions="FillAndExpand"
Aspect="AspectFill"
Margin="0"
Source="{Binding Image_File_URL}" />
<!-- Category Name -->
<Label
Text="{Binding Category_Name_Display}"
Style="{StaticResource DisplayBoldTextTitleLarge}"
Margin="12,0,12,0"
VerticalOptions="End"
HorizontalOptions="FillAndExpand"
LineBreakMode="TailTruncation"/>
</Grid>
</sfBorder:SfBorder>
</DataTemplate>
</sflist:SfListView.ItemTemplate>
</sflist:SfListView>
Appreciate your help on this.
Thanks & Regards
Naweed