I was wondering why this package needs flutter_portal, which requires additional configuration from the user, wasn't it possible to use the native ModalBottomSheet?
showModalBottomSheet<void>(
context: context,
builder: (BuildContext context) {
return Widget();
},
);
I was wondering why this package needs
flutter_portal, which requires additional configuration from the user, wasn't it possible to use the native ModalBottomSheet?