抖动拍摄之前切换到风景模式

时间:2019-02-28 18:09:04

标签: flutter picker flutter-image

无论如何,我可以在拍照前强制进入风景模式,并在拍动照片后切换回肖像。我尝试了以下代码,但是没有用。

floatingActionButton: FloatingActionButton(
      onPressed: () {
            SystemChrome.setPreferredOrientations([
                DeviceOrientation.landscapeLeft,
                DeviceOrientation.landscapeRight
            ]).then((onValue) => getImage().then((onValue) => {
                SystemChrome.setPreferredOrientations([
                    DeviceOrientation.portraitUp,
                    DeviceOrientation.portraitDown
                ])
            }));
        },
        tooltip: 'Pick Image',
        child: Icon(Icons.add_a_photo),
      ),

谢谢, Unnikrishnan B。

0 个答案:

没有答案