protected override void DidActivate(bool firstActivation, bool addedToHierarchy, bool screenSystemEnabling)
        {
            base.DidActivate(firstActivation, addedToHierarchy, screenSystemEnabling);

            if (firstActivation)
            {
                if (_followService == null)
                {
                    _followService = new FollowService();
                }

                if (_playlistService == null)
                {
                    _playlistService = new PlaylistService();
                }

                _followService.GetFollowing(SetFollowers);
            }
        }