bottomsheet stacked architecture
void setupBottomSheetUi() {
final bottomSheetService = locator<BottomSheetService>();
final builders = {
BottomSheetType.floating: (context, sheetRequest, completer) =>
_FloatingBoxBottomSheet(request: sheetRequest, completer: completer)
};
bottomSheetService.setCustomSheetBuilders(builders);
}