wwalkingg
10/23/2025, 6:51 AMBox(modifier = Modifier.fillMaxSize().background(Color.Blue)) {
Popup(
properties = PopupProperties(
clippingEnabled = false,
)
) {
Box(
modifier = Modifier
.size(10000.dp) // After failing to use fillMaxSize, a particularly large value was set.
.background(Color.Red),
)
}
}
However, the result turned out to be strange - it's not long enough. The blue part indicates the missing section of the popup. What should I do?wwalkingg
10/23/2025, 6:56 AMJulius
10/23/2025, 7:30 AM