Xamarin.Forms Xamarin.Forms Cells EntryCell

Help us to keep this website almost Ad Free! It takes only 10 seconds of your time:
> Step 1: Go view our video on YouTube: EF Core Bulk Insert
> Step 2: And Like the video. BONUS: You can also share it!

Example

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"
};

enter image description here



Got any Xamarin.Forms Question?