I'm using Xamarin.Touch and MvvmCross and am trying to get a multi-line text edit box to work in a dialog section
Here is the code I'm using:
Root = new RootElement("Settings")
{
new Section("Web API")
{
new MultilineElement("Address", "Enter Web API Location").Bind(bindings, vm => vm.ApiRoot)
}
};
Root.UnevenRows = true;
All I see in the simulator is a single line text box that is not editable.
I tried adding Root.UnevenRows = true as a StackOverflow answer suggested it as a fix but it didn't help.
Any ideas how to do this?