explo_capture 0.1.0 explo_capture: ^0.1.0 copied to clipboard
Capture render tree data of a Flutter app, for visualization with Explo.
⚠️ This package is experimental.
This package allows you to capture render tree data of a Flutter app, for visualization with Explo.
Getting Started #
The app you want to visualize must capture render tree data and make it available for visualization.
First add explo_capture
as a dependency:
dependencies:
explo_capture: ...
Then capture the part of the app's render tree that you want to visualize:
import 'package:explo_capture/explo_capture.dart';
Widget build(context) {
return CaptureRenderTree(
child: MyInterestingAppComponent(),
);
}