> For the complete documentation index, see [llms.txt](https://meulencv.gitbook.io/flutter-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://meulencv.gitbook.io/flutter-documentation/widgets/intrinsicheight.md).

# IntrinsicHeight

The IntrinsicHeight widget in Flutter is a widget that is used to adjust the size of a widget to the height of its content. This means that if the content of an IntrinsicHeight widget changes size, the size of the widget will also change dynamically to match the content.

```dart
IntrinsicHeight(
child: //...
)
```
