Reputation: 11
I would like to create a switch similar to this in xamarin forms. Anybody, please provide me with an idea.
Upvotes: 0
Views: 77
Reputation: 17412
This is called Segmented Control in Xamarin.Forms. To create this we need to add Plugin.SegmentedControl.Netstandard nuget packages. This looks same in android & iOS projects.
In your xaml file prefix this controll as control:SegmentedControl
. For more information visit Segmented Control In Xamarin.Forms
.
Upvotes: 2