I have a problem. I created a TabbedPage like this:
TabbedBuilder = new TabbedPage
{
BarBackgroundColor = Color.FromHex("#212121"),
BarTextColor = Color.White
};
TabbedBuilder.Children.Add(new ImageBuilder());
TabbedBuilder.Children.Add(new ImageTemplates());
And I set the TabbedPage like this:
Navigation.PushAsync(TabbedBuilder);
But now I want to add an image in the center of the navigation bar, so in the ImageBuilder page I added the following code:
<NavigationPage.TitleView>
<StackLayout VerticalOptions="CenterAndExpand" Orientation="Horizontal">
<Image Source="Title_Dark.png" HeightRequest="25" />
</StackLayout>
</NavigationPage.TitleView>
But when I go to that page, no image is in the navigation bar....
What am I doing wrong?