-
-
Save egorikftp/0dabcc0d21817b1ad3013985bf0ed6e1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ExperimentalMaterialApi | |
@Stable | |
class BottomSheetState( | |
initialValue: BottomSheetValue, | |
animationSpec: AnimationSpec<Float> = SwipeableDefaults.AnimationSpec, | |
confirmStateChange: (BottomSheetValue) -> Boolean = { true } | |
) : SwipeableState<BottomSheetValue>( | |
initialValue = initialValue, | |
animationSpec = animationSpec, | |
confirmStateChange = confirmStateChange | |
) { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment