Answers for "bottomsheet stacked architecture"

0

bottomsheet stacked architecture

void setupBottomSheetUi() {
  final bottomSheetService = locator<BottomSheetService>();

  final builders = {
    BottomSheetType.floating: (context, sheetRequest, completer) =>
        _FloatingBoxBottomSheet(request: sheetRequest, completer: completer)
  };

  bottomSheetService.setCustomSheetBuilders(builders);
}
Posted by: Guest on September-11-2021

Browse Popular Code Answers by Language