Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Footer is suddenly missing after updating Xamarin.Forms #285

Open
SebastianKruseWago opened this issue Jan 7, 2020 · 0 comments
Open

Footer is suddenly missing after updating Xamarin.Forms #285

SebastianKruseWago opened this issue Jan 7, 2020 · 0 comments

Comments

@SebastianKruseWago
Copy link

As soon as I update Xamarin.Forms to 4.1.0.709244 or later, the Footer is no longer visible. I'm 100% sure this is not an issue of my code because it works with Xamarin.Forms 4.1.0.581479 and earlier exactly like this. I'm not sure if this is a Xamarin.Forms or FlowListView issue.

This is my current implementation:

<flv:FlowListView Grid.Row="1" x:Name="DataListView" FlowColumnExpand="None" FlowColumnMinWidth="340" SeparatorVisibility="None" HasUnevenRows="true"
                  FlowItemsSource="{Binding Data}" IsGroupingEnabled="False" BackgroundColor="{DynamicResource DarkBackgroundColor}"
                  FlowColumnTemplate="{StaticResource EntryTemplate}" Header="{Binding Header}" Footer="{Binding Footer}">
    <flv:FlowListView.HeaderTemplate>
        <DataTemplate>
            <Label Text="{Binding}" TextColor="{DynamicResource TextColor}" FontAttributes="Bold" Margin="10,20" HorizontalTextAlignment="Center" LineBreakMode="WordWrap" />
        </DataTemplate>
    </flv:FlowListView.HeaderTemplate>
    <flv:FlowListView.FooterTemplate>
        <DataTemplate>
            <Label Text="{Binding}" TextColor="{DynamicResource LightTextColor}" FontSize="Micro" Margin="{OnPlatform iOS=20 30 20 20, Default=20}" HorizontalTextAlignment="Center" LineBreakMode="WordWrap" />
        </DataTemplate>
    </flv:FlowListView.FooterTemplate>
</flv:FlowListView>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant