Untitled
Anonymous
plain_text
03/09/2024 12:17 AM
532 B
28
Indexable
//This code will be the code behind of your .XAML, this will call the function from your model to display the actual data to your .XAML file.
//Feel free to change the function name (FillList)
protected override async void OnAppearing()
{
base.OnAppearing();
await FillList();
}
private async Task FillList()
{
ListSchools.ItemsSource = await _schools.GetSchools();
}Editor is loading...
Leave a Comment