我想在选择按钮时更改设备方向。
我已经使用setState方法实现了一个按钮
_switchOrientation = !_switchOrientation
if (_switchOrientation) {
SystemChrome.setPreferredOrientations([
DeviceOrientation.landscapeLeft,
]);
} else {
SystemChrome.setPreferredOrientations([
DeviceOrientation.portraitUp,
]);
}
});
,但是用户仍然被迫打开设备以查看更改。有没有办法改变这种状况而无需用户扭转设备?