private DGTAppearance MakeTheme()
 {
     var theme = new DGTAppearance();
     theme.BodyFont = UIFont.FromName("Noteworthy-Light", 16);
     theme.LabelFont = UIFont.FromName("Noteworthy-Bold", 17);
     theme.AccentColor = UIColor.FromRGBA(255.0f / 255.0f, 172 / 255.0f, 238 / 255.0f, 1);
     theme.BackgroundColor = UIColor.FromRGBA(240.0f / 255.0f, 255 / 255.0f, 250 / 255.0f, 1);
     // TODO: Set a UIImage as a logo with theme.logoImage
     return theme;
 }
        private DGTAppearance MakeTheme()
        {
            var theme = new DGTAppearance();

            theme.BodyFont        = UIFont.FromName("Noteworthy-Light", 16);
            theme.LabelFont       = UIFont.FromName("Noteworthy-Bold", 17);
            theme.AccentColor     = UIColor.FromRGBA(255.0f / 255.0f, 172 / 255.0f, 238 / 255.0f, 1);
            theme.BackgroundColor = UIColor.FromRGBA(240.0f / 255.0f, 255 / 255.0f, 250 / 255.0f, 1);
            // TODO: Set a UIImage as a logo with theme.logoImage
            return(theme);
        }