Skip to content

Instantly share code, notes, and snippets.

@Suchiq
Last active April 11, 2025 07:19
Show Gist options
  • Select an option

  • Save Suchiq/dddae0f47bbf592c1d421bc54c2b9361 to your computer and use it in GitHub Desktop.

Select an option

Save Suchiq/dddae0f47bbf592c1d421bc54c2b9361 to your computer and use it in GitHub Desktop.
@Composable
fun DynamicBoxWithButton() {
var isOverflowing by remember { mutableStateOf(false) }
if (isOverflowing) {
VerticalBox()
} else {
HorizontalBox(onTextOverflow = { isOverflowing = it })
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment