https://kotlinlang.org logo
#compose-wear
Title
# compose-wear
j

Jonathan

11/10/2023, 7:40 PM
Are Modal Bottom Sheets not recommended on Wear OS? I don’t see one in the Wear Material Compose library.
y

yschimke

11/10/2023, 11:20 PM
The views library had some now deprecated sliding trays. But you are correct. Not recommended.
m

marlonlom

11/11/2023, 7:58 PM
Not recommended by design. As a tip, in fact, the dialogs (confirmation, alerts) are built in a very differently way. https://www.composables.com/components/wear-compose-material/alert
s

stevebower

11/14/2023, 10:43 AM
Note that Alert and Confirmation format the content for your Dialog. You should still wrap that content in wear.compose.material.dialog.Dialog - the AlertDialogSample shows how you might do that.
2