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!
I use the below XAML and set the corner radius of the progress bar to 1/2 it's height expecting it to product a perfectly rounded corner (it does so on iOS, see bottom image on attachment). However I get the attached squar-ish progress bar instead (see top image on attachment).
I have also tried setting the radius to various values including equal to the height of the control (30) to no avail. Does this render correctly as expected on Android?
<Grid x:Name="StatusFrame" Grid.Column="2" Grid.Row="1" Margin="0, 3, 0, 0" HeightRequest="30" Padding="5" BackgroundColor="Transparent" VerticalOptions="Center" HorizontalOptions="End">
<progressbar:SfLinearProgressBar HorizontalOptions="FillAndExpand" Margin="10,0,10,0" x:Name="InProgressProgressBar" Minimum="0" Maximum="100" TrackHeight="30" HeightRequest="30" CornerRadius="30" Progress="{Binding PercentComplete}" ProgressColor="Green" TrackColor="#E6000000" EasingEffect="CubicInOut" />
<ContentView Padding="8,4,8,4" HorizontalOptions="FillAndExpand" BackgroundColor="Transparent">
<local:LabelApp Text="In Progress" TextColor="White" BackgroundColor="Transparent" FontSize="Medium" LineBreakMode="MiddleTruncation" />
</ContentView>
</Grid>