This commit is contained in:
Sarah Jamie Lewis 2023-01-31 19:13:57 -08:00
parent cdcdec9915
commit 62793908a7
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ class WidgetTesterAppDriverAdapter extends AppDriverAdapter<WidgetTester, Finder
.then((value) {
final image = decodePng(value);
final resized = copyResize(image!, width: 120);
final resizedByteData = encodePng(image);
final resizedByteData = encodePng(resized);
return resizedByteData!.buffer.asUint8List();
});
}