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