Is there not a PickerCell? Whats the best way to allow a Picker to look like an EntryCell? Also the Picker does not seem to go into a Table either!
I have to put my Picker under the table (_EquipmentName is an EntryCell and _EquipmentType is the Picker)
this.Content = new StackLayout()
{
Children =
{
new TableView()
{
Intent = TableIntent.Form,
Root = new TableRoot()
{
new TableSection()
{
_EquipmentName
},
}
},
_EquipmentType,
}
};