mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
24 lines
354 B
Markdown
24 lines
354 B
Markdown
# Resize
|
|
|
|
The `Resize` event is sent to a widget when its size changes and when it is first made visible.
|
|
|
|
- [x] Bubbles
|
|
|
|
## Parameters
|
|
|
|
`event.size`
|
|
|
|
: The new size of the Widget.
|
|
|
|
`event.virtual_size`
|
|
|
|
: The virtual size (scrollable area) of the Widget.
|
|
|
|
`event.container_size`
|
|
|
|
: The size of the widget's container.
|
|
|
|
## Code
|
|
|
|
::: textual.events.Mount
|