flutter_exploded 0.1.2 copy "flutter_exploded: ^0.1.2" to clipboard
flutter_exploded: ^0.1.2 copied to clipboard

discontinuedreplaced by: explo

Display an exploded view of the render tree of a Flutter app.

example/lib/main.dart

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

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      title: 'Flutter Exploded',
      theme: ThemeData.from(colorScheme: const ColorScheme.light()),
      darkTheme: ThemeData.from(colorScheme: const ColorScheme.dark()),
      home: const FlutterExplodedPage(),
    );
  }
}
5
likes
120
points
29
downloads

Documentation

API reference

Publisher

verified publishergabriel.terwesten.net

Weekly Downloads

Display an exploded view of the render tree of a Flutter app.

License

MIT (license)

Dependencies

collection, flutter, stream_channel, vector_math, vm_service, web_socket_channel

More

Packages that depend on flutter_exploded