public App()
        {
            // The root page of your application
            MainPage = new CustomNavigationPage (
                new ContentPage () {
                    Content = new Label (){ Text = "Icone Star" }
                },
                "star.png");

            DependencyService.Get<IFalar> ().Conversar ("Olá Leitores");
        }
Example #2
0
        public App()
        {
            // The root page of your application
            MainPage = new CustomNavigationPage(
                new ContentPage()
            {
                Content = new Label()
                {
                    Text = "Icone Star"
                }
            },
                "star.png");

            DependencyService.Get <IFalar> ().Conversar("Olá Leitores");
        }