Languages

Menu
Sites
Language
CollectionView header and footer not showing in wearable

Hello,

I had problem when using CollectionView is header and footer not showing in galalaxy wearable. Could you help me figure out problem here?

This is my code

<CollectionView
                   
                    SelectionMode="Single"
                    x:Name="listviewTask"
                    HorizontalOptions="FillAndExpand"
                    VerticalOptions="FillAndExpand"
                    SelectionChanged="listviewTask_SelectionChanged"
                    ItemTemplate="{StaticResource TaskSelector}">
            <CollectionView.Header>
                <Label Text="Header"
                       HorizontalTextAlignment="Center"
                       HorizontalOptions="CenterAndExpand"
                               TextColor="Red"
                               WidthRequest="400"
                               HeightRequest="100"
                   BackgroundColor="Red"
                   FontSize="Large"
                   FontAttributes="Bold" />
            </CollectionView.Header>

            <CollectionView.Footer>
                <Label Text="Footer"
                           TextColor="Red"
                               WidthRequest="400"
                               HeightRequest="100"
                   BackgroundColor="Red"
                   FontSize="Large"
                   FontAttributes="Bold" />
            </CollectionView.Footer>

        </CollectionView>