mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Adds the ability to register native functions for use in test fixtures. This allows registering native C++ functions that can be invoked from Dart code to perform the following common actions: * Signal a waiting latch in the C++ part of the test. * Pass data back to the C++ part of the test. * Allow the C++ part of the test to pass data to the test. Fixes: https://github.com/flutter/flutter/issues/109242 Fixes: https://github.com/flutter/flutter/issues/87299