protected override void DidActivate(bool firstActivation, bool addedToHierarchy, bool screenSystemEnabling)
        {
            try {
                if (firstActivation)
                {
                    _energyLoader.Load();

                    SetTitle("Custom Energy Bars", ViewController.AnimationType.In);
                    showBackButton = true;

                    ProvideInitialViewControllers(_energyBarListViewController, _settingsViewController, _energyBarPreviewViewController, null, null);
                }
            } catch (Exception e) {
                Plugin.Log.Error(e);
            }
        }