async void cdAccounts(object sender, System.EventArgs e) { System.Diagnostics.Debug.WriteLine(" Account Reg button clicked"); regClub.ClubName = cdClubName.Text; var cpage = new cdAccounts(regAccount, regClub, regPassword); await Navigation.PushModalAsync(cpage); }
async void cdRegistration(object sender, System.EventArgs e) { Account pAccount = new Account(); Club pClub = new Club(); String pPassword = ""; System.Diagnostics.Debug.WriteLine(" Clicked Registraion Button"); var tpage = new cdAccounts(pAccount, pClub, pPassword); await Navigation.PushModalAsync(tpage); }