I'm getting this when assigning a List<> to a ListView's ItemSource:
System.MissingMethodException: Method not found: 'Xamarin.Forms.ItemsView<Xamarin.Forms.Cell>.set_ItemsSource'.
I've used a similar setup in another project without problems, so I'm not sure why it is causing an issue here?
ListView list = new ListView ();
list.ItemsSource = Restaurants.Data;
list.ItemTemplate = new DataTemplate (typeof(TextCell))
{ Bindings = {
{ TextCell.TextProperty, new Binding("Name") }
}
};