Skip to content

Releases: workspace/bottomsheetdialog-compose

Release 1.2.2

11 Aug 08:39
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.2.1...v1.2.2

Release 1.1.3

11 Aug 08:39
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.1.2...v1.1.3

Release 1.3.0

10 Apr 15:37
Compare
Choose a tag to compare
Release 1.3.0 Pre-release
Pre-release

What's Changed

  • Compose 1.5.0-alpha02

Full Changelog: v1.2.1...v1.3.0

Release 1.2.1

10 Apr 15:28
Compare
Choose a tag to compare

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

10 Apr 15:13
Compare
Choose a tag to compare

What's Changed

  • install Dialog's OnBackPressedDispatcher by @pbk20191 in #18
  • �fix nestedScroll when Content is not scrollable by @pbk20191 in #20

New Contributors

Full Changelog: v1.1.1...v1.1.2

Release 1.2.0

15 Feb 04:41
Compare
Choose a tag to compare

What's Changed

  • Compose 1.4.0-beta01
  • Kotlin 1.8.0

Release 1.1.1

15 Feb 03:04
Compare
Choose a tag to compare

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

09 Nov 13:57
Compare
Choose a tag to compare

New Feature 🎉

  • Support edge to edge (#11)
    • edge to edge is working when enableEdgeToEdge is true and navigation bar color is transparent (alpha <1)

Bug fixes

  • Dark dim behind sheet (#10)

Release 1.0.3

27 Oct 07:17
Compare
Choose a tag to compare
  • (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

22 Aug 05:59
23ad79f
Compare
Choose a tag to compare
  • 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 set dismissWithAnimation property to true, whether you press back button or click outside , onDismissRequest is called once after sheet dismiss animation. If it is set false, BottomSheetDialog will dismiss with window animation.
    • Fix issue #1
  • Improved sample! You can test properties without changing code.