Commit 528d507a authored by Michael Goderbauer's avatar Michael Goderbauer Committed by GitHub

Workaround for #7433 in flutter_driver (#7447)

parent 7f2915d3
......@@ -168,6 +168,9 @@ class _FlutterDriverExtension {
subscription = _onFrameReady.listen((Duration duration) {
if (finder.precache()) {
subscription.cancel();
// TODO(goderbauer): Remove workaround for https://github.com/flutter/flutter/issues/7433
Timer.run(() {});
// end workaround
completer.complete(finder);
}
});
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment