widgetation 0.1.0 copy "widgetation: ^0.1.0" to clipboard
widgetation: ^0.1.0 copied to clipboard

On-demand widget tree streamer for Flutter. Wrap your app and inspect it live from a desktop viewer over the local network.

example/lib/main.dart

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

import 'dashboard/dashboard_page.dart';
import 'design/tokens.dart';

void main() {
  runApp(const Widgetation(child: ExampleApp()));
}

class ExampleApp extends StatelessWidget {
  const ExampleApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'widgetation example',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        useMaterial3: true,
        scaffoldBackgroundColor: AppColors.canvas,
        colorScheme: ColorScheme.fromSeed(
          seedColor: AppColors.primary,
          surface: AppColors.canvas,
        ),
        textTheme: const TextTheme(
          bodyMedium: AppType.bodyMd,
          bodySmall: AppType.bodySm,
        ),
      ),
      home: const DashboardPage(),
    );
  }
}
4
likes
0
points
98
downloads

Publisher

verified publisherwidgetbuilder.dev

Weekly Downloads

On-demand widget tree streamer for Flutter. Wrap your app and inspect it live from a desktop viewer over the local network.

Repository (GitHub)
View/report issues

Topics

#devtools #debugging #inspector #widget-tree

License

unknown (license)

Dependencies

flutter, shared_preferences

More

Packages that depend on widgetation