---
title: "minSize"
description: "Constrains the minimum size (width and height) of the component."
type: "function"
lastmod: "2026-05-20T01:13:53.251072Z"
---
## API Reference

### minSize

> Source set: Common

```kotlin
@ExperimentalFoundationStyleApi
fun MinSizeScope.minSize(size: DpSize)
```

Constrains the minimum size (width and height) of the component. The component's dimensions,
including padding, will be at least these values.

This property is *not* inherited

#### Parameters

| | |
| --- | --- |
| size | The minimum size ([DpSize](/jetpack-compose/androidx.compose.ui/ui-unit/functions/DpSize)). |

### minSize

> Source set: Common

```kotlin
@ExperimentalFoundationStyleApi
fun MinSizeScope.minSize(width: Dp, height: Dp)
```

Constrains the minimum width and height of the component. The component's dimensions, including
padding, will be at least these values.

This property is *not* inherited

#### Parameters

| | |
| --- | --- |
| width | The minimum width. |
| height | The minimum height. |
