How to make this progress bar vertically in xamarin forms

257 Views Asked by At

I want to create this ui design in xamarin forms, as progress bar should look like this vertically.

enter image description here

1

There are 1 best solutions below

0
Alexandar May - MSFT On

To make the ProgressBar vertical, I have an easy solution for that.You can refer to the XAML below. It could help you.

Xaml:

<StackLayout Rotation="-90" VerticalOptions="CenterAndExpand" HorizontalOptions="CenterAndExpand"> 

        <ProgressBar  Progress="1"  ProgressColor="Orange" >
            
        </ProgressBar>
</StackLayout>