explo_capture 0.1.0+2 copy "explo_capture: ^0.1.0+2" to clipboard
explo_capture: ^0.1.0+2 copied to clipboard

Capture render tree data of a Flutter app, for visualization with Explo.

pub-web.flutter-io.cn CI


⚠️ This package is experimental.

This package allows you to capture render tree data of a Flutter app, for visualization with Explo.

Installation #

Add explo_capture as a dependency:

flutter pub add explo_capture

Usage #

Wrap the widget tree, whose render tree you want to capture for visualization, in CaptureRenderTree:

import 'package:explo_capture/explo_capture.dart';

Widget build(context) {
  return CaptureRenderTree(
      child: MyInterestingAppComponent(),
  );
}

You can insert multiple CaptureRenderTree widgets into your app. Only the render tree of the CaptureRenderTree, which has been inserted most recently into the widget tree, will be captured.

You can leave CaptureRenderTree permanently in your app, since it is a no-op in release mode and only captures the render tree when requested by a viewer.

To explore the captured render tree, go to Explo and follow the instructions.

6
likes
120
pub points
44%
popularity

Publisher

verified publishergabriel.terwesten.net

Capture render tree data of a Flutter app, for visualization with Explo.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

collection, flutter

More

Packages that depend on explo_capture