I have a .net maui picker control enclosed by the sftextinputlayout control. please see the XAML and and visual layout of the picker. I was wondering is this the best practice of how the picker should look inside the syncfusion text input layout control. Not sure if i should be seeing the borders of the picker and it doesnt show the left edge of the border.
<sf:SfTextInputLayout Hint="Employee Type" HeightRequest="60" WidthRequest="120">
<VerticalStackLayout>
<Picker Margin="-10,0,0,10" WidthRequest="100" ItemsSource="{Binding ItemList}" SelectedItem="{Binding SelEEType}" ItemDisplayBinding="{Binding DisplayValue}" />
</VerticalStackLayout>
</sf:SfTextInputLayout>