Releases: workspace/bottomsheetdialog-compose
Releases · workspace/bottomsheetdialog-compose
Release 1.2.2
What's Changed
- [compose-1.4] update dependencies by @workspace in #27
- Remove unnecessary code by @workspace in #28
Full Changelog: v1.2.1...v1.2.2
Release 1.1.3
What's Changed
- [compose-1.3] Update Dependencies by @workspace in #25
- Remove unnecessary code (#23) by @workspace in #26
Full Changelog: v1.1.2...v1.1.3
Release 1.3.0
Release 1.2.1
What's Changed
- install Dialog's OnBackPressedDispatcher by @pbk20191 in #18
- �fix nestedScroll when Content is not scrollable by @pbk20191 in #20
- Fix keyboard is not showing when textfield is focused by @workspace in #22
- Kotlin 1.8.10
- Compose 1.4.1
Full Changelog: v1.2.0...v1.2.1
Release 1.1.2
Release 1.2.0
What's Changed
- Compose 1.4.0-beta01
- Kotlin 1.8.0
Release 1.1.1
What's Changed
- Applying onBackPressDispatcher to handle back press
- Applying compose bom with 2023.0100
- material-components-android 1.7.0 -> 1.8.0
- gradle 7.5-rc-3 -> 7.6
Full Changelog: v1.0.3...v1.1.1
Release 1.1.0
Release 1.0.3
- (New) NavigationBarProperties - You can set navigation bar's color, icon color with this property (#7)
- (New) BottomSheetBehaviorProperties - You can set BottomSheetBehavior with this property. See more detail on official docs (#8)
- (Fix) Enable nested scroll between BottomSheet and composable. (#9)
- Update dependencies
- Compose 1.3.0
- Kotlin 1.7.20
- Activity 1.6.1
- improve sample app to test new properties.
Release 1.0.2
- Update dependencies
- Kotlin 1.7.21
- Compose 1.2.0
- Compose Compiler 1.3.0
- Activity Compose 1.5.0
- (New)
dismissWithAnimation
to use dimissWithAnimation in BottomSheetDialog- Default value is
false
. If setdismissWithAnimation
property totrue
, whether you press back button or click outside ,onDismissRequest
is called once after sheet dismiss animation. If it is setfalse
, BottomSheetDialog will dismiss with window animation. - Fix issue #1
- Default value is
- Improved sample! You can test properties without changing code.