Releases: mutkuensert/BasicBottomSheet
Releases · mutkuensert/BasicBottomSheet
1.0.1
Version 1.0
Release Notes - Version 1.0
New Features
Introduced BasicBottomSheet composable function to create an easy to use bottom sheet UI component.
Added support for customizing the appearance of the bottom sheet, including colors, shape, and transitions.
Implemented a customizable drag handle that users can interact with to control the sheet.
Provided an example usage of the BasicBottomSheet in the code documentation.
Behavior
Bottom sheet appears as full screen like a pop up.
BasicBottomSheet
Parameters
- onCloseSheet: Callback function to handle closing the bottom sheet.
- modifier: Modifier for additional customization.
- visible: Boolean indicating whether the bottom sheet should be visible.
- containerColor: Color of the background container when the sheet is visible.
- sheetColor: Color of the bottom sheet surface.
- closeSheetThreshold: Threshold for closing the sheet when dragged to a certain point.
- shape: Custom shape for the bottom sheet.
- enterTransition: Enter transition animation for the bottom sheet.
- exitTransition: Exit transition animation for the bottom sheet.
- dragHandle: Custom composable function for the drag handle.
- content: ColumnScope lambda for defining the content of the bottom sheet.
Provided an example usage in the code documentation demonstrating how to use the BasicBottomSheet component and a gif visual in the readme file for behavior and appearance.