Beispiel #1
0
        void HandleAddContactButtonClicked(object sender, EventArgs e)
        {
            MobileCenterHelpers.TrackEvent(MobileCenterConstants.AddContactButtonTapped);

            Device.BeginInvokeOnMainThread(async() =>
                                           await Navigation.PushModalAsync(new BaseNavigationPage(new ContactDetailPage(new ContactModel(), true))));
        }
Beispiel #2
0
        protected override void OnAppearing()
        {
            base.OnAppearing();

            MobileCenterHelpers.TrackEvent(MobileCenterConstants.ContactsListPageAppeared);

            Device.BeginInvokeOnMainThread(_contactsListView.BeginRefresh);
        }
Beispiel #3
0
        protected override void OnAppearing()
        {
            base.OnAppearing();

            MobileCenterHelpers.TrackEvent(MobileCenterConstants.ContactDetailPageAppeared);
        }