Increase Size

This commit is contained in:
Sarah Jamie Lewis 2023-01-31 19:25:14 -08:00
parent 1f0f798d5f
commit 46b9efda9f
1 changed files with 1 additions and 1 deletions

View File

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