The Thickness values for the layout. The default value is a Thickness with all values set to 0.
The padding is the space between the bounds of a layout and the bounding region into which its children should be arranged into.
The following example shows setting the padding of a Layout to inset its children.
C# Example
var stackLayout = new StackLayout {
Padding = new Thickness (10, 10, 10, 20),
Children = {
new Label {Text = "Hello"},
new Label {Text = "World"}
}
}