Only new to Xamarin forms, I'm using a stackLayout as a row to display three images. I'm trying to get them centered on that row. Maybe the stacklayout isn't the correct approach but i'm not sure what is either. As you can see from the image they are bunched together. I'm looking for them all to be equally spaced out on that row.
var buttonLayout = new StackLayout()
{
Padding = new Thickness(0, 25, 0, 10),
Spacing = 10,
VerticalOptions = LayoutOptions.End,
Orientation = StackOrientation.Horizontal,
HorizontalOptions = LayoutOptions.StartAndExpand
};