3
Answers

is navigation to another page possible using switch control?

In Xamarin Forms is it possible to navigate to another content page when a switch control's IsToggled is true?
 
eg-
if (switch1.IsToggled == true)
   {
      //navigate to another page
   }
}
 
Answers (3)