Hello,
am using SfAutoComplete in my Xamarin.Forms app and have following issues.
In XAML, I have:
<autocomplete:SfAutoComplete x:Name="acpckContacts" Watermark="Enter Contact Name"
SuggestionMode="StartsWith" AutoCompleteMode="Suggest"
HeightRequest="40" DropDownTextSize="15" TextSize="15"
MinimumPrefixCharacters="1" MaximumDropDownHeight="200"/>
in code behind the list is populated as follows:
List<string> allContacts = new List<string>();
allContacts.Add("Indonesie");
allContacts.Add("Iraq");
allContacts.Add("Iran");
allContacts.Add("Iceland");
allContacts.Add("India");
allContacts.Add("Iberia");
acpckContacts.AutoCompleteSource = allContacts;
IOS:
If I enter any number of characters the list of options is not displayed at all
Android
The list of options is displayed properly but the characters are extremely small, hardly readable. Tried to play with DropDownTextSize and TextSize attributes but with no luck.
Attaching screenshots.
Any help appreciated.
thanks
Jiri
Attachment:
screenshots_6e9bb37d.zip