Hi,
Example:
public class LoginPage : TabbedPage
{
public LoginPage()
{
var profilePage = new ContentPage
{
Title = "Profile",
};
var settingsPage = new ContentPage
{
Title = "Settings",
};
Children.Add(profilePage);
Children.Add(settingsPage);
}
}
If i use this code the Tab-Captions on WP are in lower case, like:
Profile -> profile
Settings -> settings
How can i fix this?
Thanks.