Dirk Hoffmann
01/31/2021, 10:41 PMColumn { for (i in 1..100) { Text("item $i") }
inside a `@Composable DropdownMenu()`'s dropdownContent
the dropdown "disapears" if height is larger than the window height
(and I cannot put it into an explicit LazyColumn as dropdownContent
Clause is already a ColumnScope
Is this a bug, or am I doing something wrong? (or is DrowdownMenu not meant to show things with height > Window.height?)Kirill Grouchnikov
01/31/2021, 10:52 PMDirk Hoffmann
01/31/2021, 10:59 PMtrailingIcon = {
IconButton(
onClick = { println("trailing search icon click") ; searchPopupVisibleState.value = true }
) {
Icon(Icons.TwoTone.Search, contentDescription = "Top Search")
}
},
onClick is not called at all, on pressing the trailingIcon
(same with leadingIcon)