Type Alias: AdwClampProps
AdwClampProps =
WidgetProps&object
Defined in: generated/jsx.ts:2489
Props for the AdwClamp widget.
Type Declaration
| Name | Type | Description | Defined in |
|---|---|---|---|
child? | Gtk.Widget | null | The child widget of the AdwClamp. | generated/jsx.ts:2491 |
children? | ReactNode | - | generated/jsx.ts:2523 |
maximumSize? | number | The maximum size allocated to the child. It is the width if the clamp is horizontal, or the height if it is vertical. | generated/jsx.ts:2497 |
onNotify? | (self, propName) => void | null | Called when any property on this widget changes. Param The widget that emitted the notification Param The name of the property that changed (in kebab-case) | generated/jsx.ts:2529 |
orientation? | Gtk.Orientation | The orientation of the orientable. | generated/jsx.ts:2522 |
ref? | Ref<Adw.Clamp> | - | generated/jsx.ts:2535 |
tighteningThreshold? | number | The size above which the child is clamped. Starting from this size, the clamp will tighten its grip on the child, slowly allocating less and less of the available size up to the maximum allocated size. Below that threshold and below the maximum size, the child will be allocated all the available size. If the threshold is greater than the maximum size to allocate to the child, the child will be allocated all the size up to the maximum. If the threshold is lower than the minimum size to allocate to the child, that size will be used as the tightening threshold. Effectively, tightening the grip on the child before it reaches its maximum size makes transitions to and from the maximum size smoother when resizing. | generated/jsx.ts:2514 |
unit? | Adw.LengthUnit | The length unit for maximum size and tightening threshold. Allows the sizes to vary depending on the text scale factor. | generated/jsx.ts:2520 |