DLToolkit.Forms.Controls
DLToolkit.Forms.Controls copied to clipboard
Can't prevent column expand
I've tried using FlowColumnExpand="None"
to prevent the columns from expanding but it didn't work. Follows the code:
<ContentView>
<flv:FlowListView
RowHeight="180"
FlowColumnMinWidth="110"
FlowUseAbsoluteLayoutInternally="False"
FlowColumnExpand="None"
FlowItemsSource="{Binding Categories}"
FlowItemTappedCommand="{Binding OnGroupClicked}"
FlowLastTappedItem ="{Binding LastTappedItem}">
<flv:FlowListView.FlowColumnTemplate>
<DataTemplate>
<Frame Margin="5" BorderColor="Black">
</Frame>
</DataTemplate>
</flv:FlowListView.FlowColumnTemplate>
</flv:FlowListView>
</ContentView>
I'm using version 2.0.11. What am I missing?
I am getting the same issue. I have a FlowListView inside a StackLayout. The second column is extending past it's parent. (StackLayout ) I take this back, The StackLayout doesn't play nice. Switched to a Grid and it's fine.