I want to improve the size and background of my content page on ios,
var About = new ContentPage() { Title = "About" };
var layout = new StackLayout();
var line1 = new Label() { Text = viewModel.Member.Line1, FontSize = 16, HorizontalTextAlignment = TextAlignment.Center };
var MapTab = new ContentPage() {Title = "Map"};
Android:
The title of the content page appears very small on ios and not visible. I need help in trying to improve the looks and make it bigger.
You'll have to implement Custom Renderer for your
TabbedPage
. See this link:Extending TabbedPage in Xamarin Forms.
It says, that:
I will duplicate the code snippets from the source as a example:
YourTabbedPage.xaml:
iOS Custom Renderer:
Android Custom Renderer: