An EntryCell is a Cell that combines the capabilities of a Label and an Entry. The EntryCell can be useful in scenarios when building some functionality within your application to gather data from the user. They can easily be placed into a TableView and be treated as a simple form.
XAML
<EntryCell Label="Type Something"
Placeholder="Here"/>
Code
var entryCell = new EntryCell {
Label = "Type Something",
Placeholder = "Here"
};