protected async override void OnAppearing() { base.OnAppearing(); List <string> testfiles = new List <string>(); IEnumerable <string> tests = await AppFunctions.GetTestList(); foreach (string test in tests) { testfiles.Add(test); } TestList.ItemsSource = testfiles; }