Skip to content

v0.4.6

Choose a tag to compare

@dokar3 dokar3 released this 23 Jul 05:02
· 262 commits to main since this release
c7b5cfd
  • Add confirmValueChagne parameter to the state to intercept value changes. The usage:

    val state = rememberBottomSheetState(
        confirmValueChange = {
            if (it == BottomSheetValue.Collapsed) {
                // Intercept logic
            } else {
                true
            }
        },
    )
  • Bump Kotlin to 1.9.0, Compose Compiler to 1.5.0

  • Fix animation cancellations