コード例 #1
0
        protected async override void OnAppearing()
        {
            base.OnAppearing();
            var allPersons = await firebaseHelper.GetAllPersons();

            lstPersons.ItemsSource = allPersons;
        }
コード例 #2
0
ファイル: MainPage.xaml.cs プロジェクト: vnsnippets/workshops
        private async Task ReloadPeopleList()
        {
            var allPersons = await _service.GetAllPersons();

            ListPeople.ItemsSource = allPersons;
        }