public Robot() { InitializeComponent(); Singleton.GetInstance(); TitleLastActionStack.BackgroundColor = AppProperties.getLightColor(); facebookStack.BackgroundColor = AppProperties.getFaceBookCollor(); threadCheckLoginAsync(); azureService = DependencyService.Get <AzureService>(); }
public MarvinaPage() { InitializeComponent(); var robotPage = new NavigationPage(new Robot()); robotPage.Title = "Fala comigo"; robotPage.Icon = "robot.png"; robotPage.BarBackgroundColor = AppProperties.getLightColor(); var config = new NavigationPage(new Config()); config.Title = "Ajustar Parafasos"; config.Icon = "config.png"; config.BarBackgroundColor = AppProperties.getLightColor(); Children.Add(robotPage); Children.Add(config); }