how do i achieve a two level slidein/out from bott...
# compose
o
how do i achieve a two level slidein/out from bottom? right now i have a basic setup like below but it only can slide in/out with the height provided to the modifier, but instead of doing a single level height, i would want to have two level slide for eg. modal bottom sheet.
Copy code
AnimatedVisibility(
        modifier = modifier,
        visible = isVisible,
        enter = slideInVertically(initialOffsetY = { fullHeight -> fullHeight }) +
            fadeIn(tween(fadeInFadeOutTweenDuration), initialAlpha),
        exit = slideOutVertically(targetOffsetY = { fullHeight -> fullHeight }) +
            fadeOut(tween(fadeInFadeOutTweenDuration)),
        content = content
    )