• 1000 не могу найти скриншот.
takeScreenshot() async {
screenshotController
.capture(pixelRatio:2)
.then((image) async {
setState(() {
_imageFile = image;
});
final result =
await ImageGallerySaver.saveImage(image.readAsBytesSync());
print("File Saved to Gallery");
}).catchError((onError) {
print(onError);
});
}