Exemple #1
0
        protected override void OnAppearing()
        {
            base.OnAppearing();

            ViewModel.GraphQLConnectionFailed += HandleGraphQLConnectionFailed;

            AppCenterService.TrackEvent(AppCenterConstants.VotePageAppeared);
        }
Exemple #2
0
        protected override void OnAppearing()
        {
            base.OnAppearing();

            AppCenterService.TrackEvent(AppCenterConstants.VotePageAppeared);

            _graphqlApiEndpointEditor.Text = GraphQLSettings.Uri.ToString();
            _shouldUpdateChartAutomaticallySwitch.IsToggled = GraphQLSettings.ShouldUpdateChartAutomatically;
        }
Exemple #3
0
        protected override void OnStart()
        {
            base.OnStart();

            AppCenterService.Start();
        }
Exemple #4
0
        async void CreatedByLabelTapped()
        {
            AppCenterService.TrackEvent(AppCenterConstants.CreatedByLabelTapped);

            await DependencyService.Get <IDeepLinks>().OpenTwitter().ConfigureAwait(false);
        }