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.

example/lib/main.dart

import 'package:explo_capture/explo_capture.dart';
import 'package:flutter/material.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return const CaptureRenderTree(
      child: MaterialApp(
        title: 'My App',
        home: Scaffold(
          body: Center(child: Text('Hello Explo')),
        ),
      ),
    );
  }
}
6
likes
140
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