Trying to build a Forms based settings page, IOS only for right now.
The following puts the detail vertically underneath the text.
Content = new TableView
{
Root = new TableRoot ("Table Title")
{
new TableSection("Section 1 Title")
{
new TextCell
{
Text = "TextCell Text",
Detail = "TextCell Detail"
},
},
},
}
I understand the Style property was removed, is there a workaround to get the detail back over on the right? I can do it by re-creating the UITableViewCell object in a Renderer but this breaks the binding.
Hep!