コード例 #1
0
        public override void ViewDidLoad()
        {
            base.ViewDidLoad();
            // Perform any additional setup after loading the view, typically from a nib.

            var theme = AKFTheme.ThemeWithPrimaryColor(
                UIColor.Purple,
                UIColor.White,
                UIColor.Magenta,
                UIColor.Purple,
                UIStatusBarStyle.LightContent
                );

            theme.BackgroundColor = UIColor.Yellow;

            auth = new AccountKitAuth(theme);
        }
コード例 #2
0
 public AccountKitAuth(AKFTheme theme)
 {
     this.theme = theme;
 }