颤振-按下按钮时强制改变方向

时间:2019-09-29 12:27:27

标签: flutter orientation

我想在选择按钮时更改设备方向。

我已经使用setState方法实现了一个按钮

                          _switchOrientation = !_switchOrientation
if (_switchOrientation) {
                          SystemChrome.setPreferredOrientations([
                            DeviceOrientation.landscapeLeft,
                          ]);
} else {
 SystemChrome.setPreferredOrientations([
                            DeviceOrientation.portraitUp,
                          ]);
}
                        });

,但是用户仍然被迫打开设备以查看更改。有没有办法改变这种状况而无需用户扭转设备?

0 个答案:

没有答案