Hi,
I'am experiencing multiple layout issues with my custom ItemTemplate.
This is how it looks like:
The image should be displayed on every item.
Margins seem off, there is too much margin on the bottom and not enough margin on the top.
If I change margins on the Stacklayout/Label/Image it does not change anything.
If I set VerticalOptions to "center" on the Label, StackLayout nothing changes.
If I set VerticalOptions to "center" on the image, the image won't be displayed at all anymore.
And here is the code which I copied from your documentation:
<controls:CustomSfAutoComplete.ItemTemplate>
<DataTemplate>
<StackLayout
Orientation="Horizontal">
<Image
Source="email"
HeightRequest="20"
WidthRequest="20" />
<Label
Text="{Binding Name}" />
</StackLayout>
</DataTemplate>
</controls:CustomSfAutoComplete.ItemTemplate>
Thank you and best regards,
Simon