From c86c82ee6985b9c36de95f6ba4a5627bfec11ffb Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Wed, 3 Aug 2016 21:45:01 -0400 Subject: [PATCH] track page appearing --- src/App/Controls/ExtendedContentPage.cs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/App/Controls/ExtendedContentPage.cs b/src/App/Controls/ExtendedContentPage.cs index cce09fee9..d61eb4ef4 100644 --- a/src/App/Controls/ExtendedContentPage.cs +++ b/src/App/Controls/ExtendedContentPage.cs @@ -30,5 +30,12 @@ namespace Bit.App.Controls }); } } + + protected override void OnAppearing() + { + var googleAnalyticsService = Resolver.Resolve(); + googleAnalyticsService.TrackPage(GetType().Name); + base.OnAppearing(); + } } }