Xamarin.forms: [UWP] TitleView does not appear when used with TabbedView

Created on 19 Nov 2018  Â·  6Comments  Â·  Source: xamarin/Xamarin.Forms

Description

Not sure if it's related to #3834 , but I'm not seeing the TitleView I expect on UWP.

Steps to Reproduce

https://github.com/davidortinau/TheLittleThingsPlayground/blob/master/TheLittleThingsPlayground/Views/ThreeTwoPage.xaml#L17

<NavigationPage.TitleView>
        <StackLayout Orientation="Horizontal" VerticalOptions="Center" Spacing="10">
            <Image Source="{OnPlatform UWP=Assets/iconXamagon.png, Default=iconXamagon.png}">
                <Image.GestureRecognizers>
                    <TapGestureRecognizer
                        Command="{Binding TapCommand, Mode=OneWay}"
                        CommandParameter="https://www.xamarin.com"/>
                </Image.GestureRecognizers>
            </Image>
            <Label Text="3.2.0" FontSize="16" TextColor="Black" VerticalTextAlignment="Center" />
        </StackLayout>
    </NavigationPage.TitleView>

Expected Behavior

TitleView content appears in the blue bar title space.

Actual Behavior

It's empty.

Basic Information

  • Version with issue: 3.4.0.1008975

Screenshots

image

Android version showing the xamagon and 3.2.0 label I expect to see somewhere on UWP.

image

Reproduction Link

https://github.com/davidortinau/TheLittleThingsPlayground/blob/master/TheLittleThingsPlayground/Views/ThreeTwoPage.xaml#L17

titleview 6 UWP proposal-open enhancement âž•

Most helpful comment

Would be awesome to have!

All 6 comments

Still happens on master. But our gallery page works

The TabbedPage implementation for TitleView on UWP was never implemented which is why it's not showing up here for UWP.

any progress on that please?

Would be awesome to have!

Any news on this?

Does anybody have a solution for fix it?

Was this page helpful?
0 / 5 - 0 ratings