I am having trouble in getting the autocomplete to show any kind of dropdown list.
I am setting the source via c#:
tbPlace.BindingContext = savedLocations;
tbPlace.ItemsSource = savedLocations.locations;
I am using almost the exact view model that the autocomplete example you have and add data to the collection, but nothing I type will cause the autocomplete to show. I double checked and there is a collection but it is being ignored?
Is there a setting I am missing?
I should add that my model only has one string field.