| CustomPlacementPopup.kt |
Layout scope for content that can be shown inside of [CustomPlacementPopup].
|
16904 |
| CustomPlacementPopupHorizontalContent.kt |
[LazyRow] wrapper over [content] configuring it to be shown inside of [CustomPlacementPopup].
@param content Composable items to be shown as horizontal content in a [CustomPlacementPopup].
|
1133 |
| CustomPlacementPopupVerticalContent.kt |
[Column] wrapper over [content] configuring it to be shown inside of [CustomPlacementPopup].
@param content Composable content to be shown as vertical content in a [CustomPlacementPopup].
|
1451 |
| DropdownMenu.kt |
A dropdown menu that displays a list of [MenuItem]s. The menu can be expanded or collapsed and
is displayed as a popup anchored to the menu button that triggers it.
@param menuItems the list of [MenuItem]s to display in the menu.
@param expanded whether or not the menu is expanded.
@param modifier [Modifier] to be applied to the menu.
@param offset [DpOffset] from the original anchor position of the menu.
@param scrollState [ScrollState] used by the menu's content for vertical scrolling.
@param onDismissRequest Invoked when the user requests to dismiss the menu, such as by tapping
outside the menu's bounds.
|
17300 |
| MenuItem.kt |
Model for [DropdownMenuItem]. This is a sealed type to represent the different types of menu
items that can be rendered in the dropdown menu.
|
6096 |