This repository has been archived by the owner on May 1, 2024. It is now read-only.
[Bug] How create Custom Switch in xamarin #11305
Unanswered
Shraddha996
asked this question in
General
Replies: 1 comment
-
Similar to #11304 you can create this using perhaps 2 buttons in a grid, a frame or shape for the selection indicator, and use VisualStateManager to change the styles. If you want animation and wish to stay in XAML, then check out Xamanimation. Or you can do this in C# and have a simple view animation like: if(isChecked){
selectionIndicator.TranslateTo(100,0,500);
}else{
selectionIndicator.TranslateTo(0,0,500);
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
As am new to this platform I am unable to find a proper solution for how to create a
custom switch with label on it
I want a switch like this.
Please help!!!!!!!
Beta Was this translation helpful? Give feedback.
All reactions