public override void ViewDidLoad()
        {
            base.ViewDidLoad();
            View.Frame = new CGRect(View.Frame.Location, new CGSize(UIScreen.MainScreen.Bounds.Width, View.Frame.Height));

            followButton.Layer.CornerRadius = _cornerRadius;
            followButton.TitleLabel.Font    = Constants.Semibold14;
            followButton.Layer.BorderColor  = Constants.R244G244B246.CGColor;

            username.Font         = Constants.Semibold20;
            websiteTextView.Font  = Constants.Regular14;
            descriptionLabel.Font = Constants.Regular14;
            locationLabel.Font    = Constants.Regular12;
            balanceLabel.Font     = Constants.Regular14;
            balanceValue.Font     = Constants.Regular14;

            Avatar = new UIImageView(new CGRect(5, 5, 80, 80));
            Avatar.Layer.CornerRadius     = Avatar.Frame.Width / 2;
            Avatar.ClipsToBounds          = true;
            Avatar.UserInteractionEnabled = true;
            Avatar.ContentMode            = UIViewContentMode.ScaleAspectFill;

            PowerFrame = new CircleFrame(Avatar, new CGRect(0, 0, 90, 90));
            View.Add(PowerFrame);

            PowerFrame.AutoSetDimensionsToSize(new CGSize(90, 90));
            PowerFrame.AutoPinEdgeToSuperviewEdge(ALEdge.Top, 25f);
            PowerFrame.AutoPinEdgeToSuperviewEdge(ALEdge.Left, 30f);
            PowerFrame.AutoAlignAxis(ALAxis.Horizontal, followButton);
            stackView.AutoPinEdge(ALEdge.Top, ALEdge.Bottom, PowerFrame, 9f);
#if !DEBUG
            accountViewHeight.Constant = 0;
#endif
            _viewLoaded();
        }