Exemple #1
0
        private async void AddParticipantButton_Clicked(object sender, EventArgs e)
        {
            string username = await DisplayPromptAsync("Inserisci il nome utente", "Digita lo username dell'utente e premi aggiungi", "Aggiungi", "Annulla", "Username");

            AddParticipantResultEnum result = await Vm.AddParticipant(username);

            ManageResultAddParticipant(result);
        }