In this question on Xamarin Forums, Craig Dunn teaches how to create a cell with frame.
I want to Add a space between each cell.
At present the cells seems glued, and the ViewCell
doesn`t have a space property.
How can I add a separator space between rows on custom Xamarin.Forms ViewCell?
You just have to customize the layout of the
MenuCell
further to achieve this.Shown below is a version that uses a further
Xamarin.Forms.Frame
to create a spacing between each item with a couple other modifications:-XAML Page:-
XAML Code-Behind:-
ViewCell class:-
Will result in the following:-