public App() { var tab1 = new SampleContentPage() { BackgroundColor = Color.FromHex("#27ae60"), Title = "Tab1" }; var tab2 = new SampleContentPage() { BackgroundColor = Color.FromHex("#2980b9"), Title = "Tab2" }; var tab3 = new SampleContentPage() { BackgroundColor = Color.FromHex("#e67e22"), Title = "Tab3" }; var customTab = new TabCarouselPage.Core.TabCarouselPage(TabType.TitleWithIcon); customTab.Children.Add(tab1); customTab.Children.Add(tab2); customTab.Children.Add(tab3); MainPage = new NavigationPage(customTab) { Title = "Sample Custom Tab" }; }
public App() { var tab1 = new SampleContentPage() { BackgroundColor = Color.FromHex("#27ae60"), Title = "Tab1" }; var tab2 = new SampleContentPage() { BackgroundColor = Color.FromHex("#2980b9"), Title = "Tab2" }; var tab3 = new SampleContentPage() { BackgroundColor = Color.FromHex("#e67e22"), Title = "Tab3" }; var customTab = new TabCarouselPage.Core.TabCarouselPage(TabType.TitleWithIcon); customTab.Children.Add(tab1); customTab.Children.Add(tab2); customTab.Children.Add(tab3); MainPage = new NavigationPage(customTab) { Title = "Sample Custom Tab"}; }