I'm trying to create a progress bar to show the progress of a file upload. I've got it working nicely but I can't seem to adjust the thickness of the progress bar.
It seems like when I add Thickness="10" or even Thickness="20" that the thickness of the bar doesn't actually change. I also add Padding="2" or Padding="10" and instead of increasing the bar's thickness, it just seems to push the actual progress bar off the screen so that only the track is visible (still at incorrect thickness).
This is my code:
<StackLayout Orientation="Vertical" HorizontalOptions="FillAndExpand" Padding="0,10,20,10" VerticalOptions="CenterAndExpand">
<Label IsVisible="{Binding UploadInProgress}" Text="Uploading file..." VerticalOptions="Center" LineBreakMode="NoWrap" />
<progressBar:SfLinearProgressBar Progress="{Binding AttachProgress}" TrackColor="DarkGray" ProgressColor="DeepSkyBlue"
VerticalOptions="Center" HorizontalOptions="FillAndExpand"
Minimum="0" Maximum="1" CornerRadius="15">
<progressBar:SfLinearProgressBar.RangeColors>
<progressBar:RangeColorCollection>
<progressBar:RangeColor IsGradient="True" Color="#337ab7" Start="0" End="0.5"/>
<progressBar:RangeColor IsGradient="True" Color="DeepSkyBlue" Start="0.5" End="1"/>
</progressBar:RangeColorCollection>
</progressBar:SfLinearProgressBar.RangeColors>
</progressBar:SfLinearProgressBar>
</StackLayout>