explo_capture 0.1.0+2 explo_capture: ^0.1.0+2 copied to clipboard
Capture render tree data of a Flutter app, for visualization with Explo.
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')),
),
),
);
}
}