Jetpack Compose Basics - Looking for an alternative to menus or dialogues? Try the Modal Bottom Sheet
Mobile
2
 min read
February 23, 2022

Jetpack Compose Basics - Looking for an alternative to menus or dialogues? Try the Modal Bottom Sheet

Peter Šuly
Peter Šuly
Android developer
LinkedIn Logo

Bottom Sheet is component used as supplementary surface anchored to bottom of screen. This article will be about exact type of Bottom Sheet - Modal Bottom Sheet and how to use it in Jetpack Compose.

It's an alternative to menus or dialogs, it has to be dismissed (either by swipe or by some other user interaction) to interact with underlaying content of screen. In Jetpack Compose, bottom sheet is implemented via ModalBottomSheet composable.

Bottom sheet anatomy. 1 - bottom sheet content, 2 - row of bottom sheet, 3 - overlaid screen content

How to create Bottom Sheet in Jetpack Compose?

ModalBottomSheet has 3 possible state defined through sheetState parameter of type ModalBottomSheetValue. Possible values are Hidden, Expanded or HalfExpanded. Default value in sheet state is Hidden, own state can be remembered like this

ModalBottomSheet, as usual in Jetpack Compose, has many parameters for customisation, two of them are mandatory.

Mandatory parameters

  • sheetContent - composable, containing content of bottom sheet
  • content - composable, containing content of screen behind the bottom sheet. This content is overlayed by scrimColor when bottom sheet is in Expanded state

Optional parameters

  • sheetState - controls state of ModalBottomSheet
  • modifier - used for changes from the caller side
  • sheetShape - shape of bottom sheet e.g. *RoundedCornerShape*(topStart = 24.*dp*, topEnd = 24.*dp*)
  • sheetElevation - elevation of bottom sheet in dp
  • sheetBackgroundColor - background color of bottom sheet, defaultly set to surface color
  • sheetContentColor - content color contrasting on background color, default value is computed using contentColorFor function
  • scrimColor - color of overlay applied on content when bottom sheet is visible
Behaviour of bottom sheet

How to open ModalBottomSheet on Button click?

There are show() and hide() functions ready for animated transition of ModalBottomSheet which can be called on modalBottomSheetState. These are suspend functions, because animation run as coroutine, scope or LaunchedEffect is needed to use them.

How to disable Half Expanded state in ModalBottomSheet?

In some cases, HalfExpanded state is not desirable and luckily there is a way to disable it by returning false in confirmStateChange lambda.

More articles from the Jetpack Compose Basics series:

Potrebujete pomôct s vaším digitálnym produktom? Kontaktujte nás!
hello@goodrequest.com
Do you need help with your digital product? Contact us!
hello@goodrequest.com

Like what you see?
Join our newsletter.

Great! Welcome to newsletter.
Oops! Something went wrong while submitting your email.
High quality content once a month. No spam, we promise.
Your personal data is processed in accordance with our Memorandum on Personal Data Protection.

Páči sa vám náš content?
Odoberajte newsletter.

Great! Welcome to newsletter.
Oops! Something went wrong while submitting your email.
Vaše osobné údaje sú spracované v súlade s našim Memorandom na ochranu osobných údajov.