flutter:有没有办法使用前置摄像头?

flutter: Is there a way to use the front camera?

我想在flutter中使用前置摄像头。 我想让没有拍摄按钮的前置摄像头实时出现在页面的三分之一左右,而不是拍摄模式。 你有参考资料吗material?

参考Material-

https://flutter.dev/docs/cookbook/plugins/picture-using-camera#complete-example

此处,final cameras = await availableCameras(); return 可用摄像头列表,第二个(索引号 1)是前置摄像头。 要使用前置摄像头,只需将 final firstCamera = cameras.first; 更改为 final firstCamera = cameras[1];

CameraPreview(_controller)

更改或绑定大小框以确定您想使用多少来预览相机的输出!