您可以使用Flutter团队使用的相机插件进行抖动。
https://pub.dartlang.org/packages/camera
然后将您的图像和cameraview放置在Stack Widget中,如下所示:
return new Stack( alignment: FractionalOffset.center, children: <Widget>[ new Positioned.fill( child: new AspectRatio( aspectRatio: controller.value.aspectRatio, child: new CameraPreview(controller)), ), new Positioned.fill( child: new Opacity( opacity: 0.3, child: new Image.network( 'https://picsum.photos/3000/4000', fit: BoxFit.fill, ), ), ), ],);



