Exemplo n.º 1
0
        private async void getCompleted()
        {
            List <Statistic> stats = await Communications.GetStatistics();

            foreach (Statistic s in stats)
            {
                await DisplayAlert("⚡️⚡️Congratulations⚡️⚡️", "You have completed your task "
                                   + s.taskname + "\nSuccess: " + s.completed + "\nNo. of penalties: " + s.failed
                                   + "\nTotal checks required: " + s.total +
                                   "\nSuccess Percentage: " + s.percentage, "Ok");
            }
        }