Welcome to the Xamarin.Forms feedback portal. We’re happy you’re here! If you have feedback on how to improve the Xamarin.Forms, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
Hi,
I am using Version: 16.4.0.52 (Trial) for Xamarin seems like the auto-complete feature is not visible the
moment I access the page using a MasterDetail navigation, in result, I need to rotate the phone in order
for the control to be visible.
Here's the code for the autocomplete control:
<StackLayout HorizontalOptions="CenterAndExpand" VerticalOptions="CenterAndExpand" Padding="30">
<autocomplete:SfAutoComplete x:Name="autocomplete" HeightRequest="40" AutoCompleteMode="Suggest" NoResultsFoundText="No Results Found"
MultiSelectMode="Token" TokensWrapMode="Wrap" Watermark="Search" WatermarkColor="Gray"
IsSelectedItemsVisibleInDropDown="False" DataSource="{Binding AutoCompleteItemSource}">
<autocomplete:SfAutoComplete.TokenSettings>
<autocomplete:TokenSettings FontSize="14"
BackgroundColor="Gray"
TextColor="White"
SelectedBackgroundColor="Black"
DeleteButtonColor="DarkGray"
IsCloseButtonVisible="True"
DeleteButtonPlacement="Right"
CornerRadius="15"/>
</autocomplete:SfAutoComplete.TokenSettings>
</autocomplete:SfAutoComplete>
</StackLayout>
Attached files are the screenshots for the said behaviour.