Replies: 2 comments 1 reply
-
|
Hi @paulober is the code inside the collection view? If not, may you try that |
Beta Was this translation helpful? Give feedback.
1 reply
-
|
@paulober can you supply a minimal repro because when I tested the following the spaces work fine: <CollectionView HeightRequest="400">
<CollectionView.ItemsLayout>
<LinearItemsLayout ItemSpacing="20" Orientation="Vertical" />
</CollectionView.ItemsLayout>
<CollectionView.ItemsSource>
<x:Array Type="{x:Type x:String}">
<x:String>Item 1</x:String>
<x:String>Item 2</x:String>
<x:String>Item 3</x:String>
</x:Array>
</CollectionView.ItemsSource>
<CollectionView.ItemTemplate>
<DataTemplate x:DataType="x:String">
<Border>
<Label Text="{Binding .}" />
</Border>
</DataTemplate>
</CollectionView.ItemTemplate>
</CollectionView>
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

Uh oh!
There was an error while loading. Please reload this page.
-
I tried increase the spacing in my CollectionView with this snippet from the docs:
but it has exactly no impact on the visual representation of that view. Am I doing something wrong or is this a bug?
The rest looks like this:
Beta Was this translation helpful? Give feedback.
All reactions