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

Visual feedback for AI coding agents. Click any widget in your Flutter app, add a note, and paste structured context into Claude Code, Codex, or any AI tool.

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',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        useMaterial3: true,
        scaffoldBackgroundColor: AppColors.canvas,
        colorScheme: ColorScheme.fromSeed(
          seedColor: AppColors.primary,
          surface: AppColors.canvas,
          primary: AppColors.primary,
        ),
        textTheme: const TextTheme(
          bodyLarge: AppType.body,
          bodyMedium: AppType.body,
          bodySmall: AppType.caption,
          labelLarge: AppType.bodyStrong,
        ),
      ),
      home: const DashboardPage(),
    );
  }
}
4
likes
160
points
98
downloads

Documentation

API reference

Publisher

verified publisherwidgetbuilder.dev

Weekly Downloads

Visual feedback for AI coding agents. Click any widget in your Flutter app, add a note, and paste structured context into Claude Code, Codex, or any AI tool.

Repository (GitHub)
View/report issues

Topics

#devtools #debugging #inspector #widget-tree

License

MIT (license)

Dependencies

flutter, shared_preferences

More

Packages that depend on widgetation