# Blank The **** component supports automatic filling of the empty part of the container along the main axis. >![](../../public_sys-resources/icon-note.gif) **NOTE:** >- This component is valid only when the parent component is **** or ****. ## Required Permissions None ## Child Components None ## APIs Blank\(min?: Length\) - Parameters

Name

Type

Mandatory

Default Value

Description

min

Length

No

0

Minimum size of the <Blank> component in the container along the main axis.

## Attributes

Name

Type

Default Value

Description

color

Color

0x00000000

Color to fill the blank.

>![](../../public_sys-resources/icon-note.gif) **NOTE:** >- Universal attribute methods are not supported. ## Example ``` @Entry @Component struct BlankExample { build() { Column() { Row() { Text('Bluetooth').fontSize(18) Blank() Text('on/off').fontSize(18).height(60) }.width('100%').backgroundColor(0xFFFFFF).borderRadius(15).padding(12) }.backgroundColor(0xEFEFEF).padding(20) } } ``` Portrait mode ![](figures/blank_v.gif) Landscape mode ![](figures/blank_h.gif)