Xamarin Forms Buka Halaman Baru di Tombol Klik

private void button1Click(object sender, EventArgs e)
{            
     App.Current.MainPage = new settings();
}
Vast Vole