Esempio n. 1
0
        public override void Configure(GemAppOptions options)
        {
            options.InitializerType = typeof(YourAppInitializer);
            //options.SplashPageType = typeof(YourCustomXamlSplashPage); if u want a custom splash
            //options.SplashPageType = null; if u don't want any splash

            //Hint, generate your styles here: https://material.io/resources/color/
            StyleKit = new MaterialStyleKit()
            {
                PrimaryColor            = Color.FromHex("#FF303f9f"),
                SecondaryColor          = Color.FromHex("#FF8e24aa"),
                TextColorOfPrimaryColor = Color.FromHex("#ffffff"),
                BackgroundColorPage     = Color.FromHex("#ffffff")
            };
        }
Esempio n. 2
0
 public YourAppInitializer(GemAppOptions appOptions, ApplicationStore applicationStore, ViewModelBaseServices viewModelBaseServices) : base(appOptions, applicationStore, viewModelBaseServices)
 {
 }