() async {
// Save the bottomsheet in a variable
var bottomSheet = showModalBottomSheet(
context: context,
builder: (context) => Container();
);
// Detect when it closes
await bottomSheet.then((onValue) {
print("value: $onValue");
});
// Do something here
}