statmark56
11/14/2023, 10:52 PMMainBody()
BottomSheet(
...,
content = null,
)
vs
BottomSheet(
...,
content = MainBody(),
)
I dont see any UI difference though, but what could go wrong by preferring the former?chr
11/14/2023, 11:03 PMBottomSheet
won’t be applied to your MainBody
.Fergus Hewson
11/14/2023, 11:37 PMstatmark56
11/15/2023, 1:58 AMefemoney
11/15/2023, 4:51 PMBottomSheet(
...,
content = { MainBody() },
)