Hi all, can someone explain me how is realized the attached layout ?
Looks like a StackLayout (Horizontal) on top and bottom (Yellow frame) and a StackLayout (Vertical) laid on top of that.
StackLayout
<Grid> <StackLayout VerticalOptions = "Start" Orientation = "Horizontal"> ... <StackLayout VerticalOptions = "End" Orientation = "Horizontal"> ... <StackLayout HorizontalOptions = "Center" Orientation = "Vertical"> ... </Grid>
Answers
Looks like a
StackLayout
(Horizontal) on top and bottom (Yellow frame)and a
StackLayout
(Vertical) laid on top of that.