BottomSheet.Padding Property
Gets or sets the padding between Bottom Sheet edges and content. This is a bindable property.
Namespace: DevExpress.Maui.Controls
Assembly: DevExpress.Maui.Controls.dll
NuGet Package: DevExpress.Maui.Controls
Declaration
public Thickness Padding { get; set; }
Property Value
Type | Description |
---|---|
Thickness | Specifies padding. |
Remarks
The following markup shows how to specify the padding value:
<!-- Applies the same value to all paddings: -->
<dxc:BottomSheet Padding="30" .../>
<!-- Specifies horizontal and vertical padding values: -->
<dxc:BottomSheet Padding="30,10" .../>
<!-- Specifies left, top, right, and bottom padding values: -->
<dxc:BottomSheet Padding="30,20,30,10" .../>
See Also