Hello,
Please how can I design image below in xamarin forms.
This is called SegmentedControl. You have three ways:
1. Free
https://github.com/alexrainman/SegmentedControl
https://github.com/1iveowl/Plugin.SegmentedControl
2. Paid
https://help.syncfusion.com/xamarin/segmented-control/getting-started
https://www.telerik.com/xamarin-ui/segmented
3. Or implement it by yourself
Answers
This is called SegmentedControl. You have three ways:
1. Free
https://github.com/alexrainman/SegmentedControl
https://github.com/1iveowl/Plugin.SegmentedControl
2. Paid
https://help.syncfusion.com/xamarin/segmented-control/getting-started
https://www.telerik.com/xamarin-ui/segmented
3. Or implement it by yourself
You could also use the
Grid
andLabel
to design the view. Add a tap gesture to the label to implement the selection function.@igorkr_10 @Jarvan Thank you.