List Popup Content
fun ListPopupContent(popupContentSize: IntSize, onPopupContentSizeChange: (IntSize) -> Unit, fractionProgress: () -> Float, alphaProgress: () -> Float, popupLayoutPosition: PopupLayoutPosition, localTransformOrigin: TransformOrigin, modifier: Modifier = Modifier, content: @Composable () -> Unit)
The scaling, fading and clip-revealing container that hosts a list popup's content.
Parameters
popup Content Size
The last reported size of the content, compared against the latest measurement to avoid redundant onPopupContentSizeChange callbacks.
on Popup Content Size Change
Called when the measured content size changes.
fraction Progress
Provides the current scale/clip-reveal fraction (0 → 1) of the popup.
alpha Progress
Provides the current alpha (0 → 1) of the popup content.
popup Layout Position
The PopupLayoutPosition describing the popup's spawn direction.
local Transform Origin
The transform origin local to the content used while scaling.
modifier
The modifier to be applied to the popup container.
content
The content of the popup.