async void OnTimeIntervalInfo(object sender, EventArgs args)
 {
     var page = new CommonInfoPopup(AppResources.Settings_Statistics_General_Interval, AppResources.Settings_Statistics_General_Interval_Description);
     await PopupNavigation.PushAsync(page);
 }
 async void OnCategoryInfo(object sender, EventArgs args)
 {
     var Category = BindingContext as DimensionCategoryModel;
     var page     = new CommonInfoPopup(Category.Name, Category.Description);
     await PopupNavigation.PushAsync(page);
 }
 async void OnPushNotificationsInfo(object sender, EventArgs args)
 {
     var page = new CommonInfoPopup(AppResources.Settings_Push_Notifications,
                                    AppResources.Settings_Push_Notifications_Description);
     await PopupNavigation.PushAsync(page);
 }
 async void OnRemoveAlertsInfo(object sender, EventArgs args)
 {
     var page = new CommonInfoPopup(AppResources.Settings_Remove_Alerts,
                                    AppResources.Settings_Remove_Alerts_Description);
     await PopupNavigation.PushAsync(page);
 }
 async void OnPrivacyPolicyTapped(object sender, EventArgs args)
 {
     var page = new CommonInfoPopup(AppResources.Privacy_Policy_Title, AppResources.Privacy_Policy_Description);
     await PopupNavigation.PushAsync(page);
 }