Entry
Basic example
View.Entry("Entry")
Basic example with styling
View.Entry(
horizontalOptions = style.Position,
verticalOptions = style.Position,
backgroundColor = style.LayoutColor,
text = "Entry"
)
See also:
More examples
An example Entry
is as follows:
View.Entry(
text = entryText,
textChanged = (fun args -> dispatch (TextChanged(args.OldTextValue, args.NewTextValue))),
completed = (fun text -> dispatch (EntryEditCompleted text))
)
An example Entry
with password is as follows:
View.Entry(
text = password,
isPassword = true,
textChanged = (fun args -> dispatch (TextChanged(args.OldTextValue, args.NewTextValue))),
completed = (fun text -> dispatch (EntryEditCompleted text))
)
An example Entry
with a placeholder is as follows:
View.Entry(
placeholder = "Enter text",
textChanged = (fun args -> dispatch (TextChanged(args.OldTextValue, args.NewTextValue))),
completed = (fun text -> dispatch (EntryEditCompleted text))
)
