Editor
Basic example
View.Editor("Editor")
Basic example with styling
View.Editor(
horizontalOptions = style.Position,
verticalOptions = style.Position,
backgroundColor = style.LayoutColor,
text = "Editor"
)
See also:
More examples
An example Editor
is as follows:
View.Editor(
text = editorText,
textChanged = (fun args -> dispatch (TextChanged(args.OldTextValue, args.NewTextValue))),
completed = (fun text -> dispatch (EditorEditCompleted text))
)
