See Also: Frame Members
Frame have a default Layout.Padding of 20.
The following example shows how to construct a new Frame with an Outline color.
C# Example
var frame = new Frame {
Content = new Label { Text = "I'm Framous!" },
OutlineColor = Color.Silver,
};

The Xamarin.Forms.Frame class has the following XAML properties:
| Property | Value |
|---|---|
| HasShadow | true or false, to indicate whether to show a shadow effect where the platform supports it. |
| OutlineColor | A color specification, with or without the prefix, "Color". For example, "Color.Red" and "Red" both specify the color red. |