我已经尝试过:
@override
void didChangeDependencies() {
super.didChangeDependencies();
Orientation orientation = MediaQuery.of(context).orientation;
(orientation == Orientation.portrait)
? print(orientation)
: Navigator.pop(context);
}
在 _BottomContentState 中,但是当我切换设备的方向时这给了我一个错误。
另外,我希望 ModalBottomSheet 在打开时关闭,否则不采取任何行动