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

Renders any Flutter widget to PNG, from a command-line expression or the project's `@Preview` functions, and diffs two runs pixel-wise. A small CLI shaped for AI agents.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'app_theme.dart';
import 'ui/settings_page.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'shutter example',
      theme: appTheme,
      darkTheme: appDarkTheme,
      home: const SettingsPage(),
    );
  }
}
0
likes
160
points
90
downloads

Documentation

API reference

Publisher

verified publisherkoji-1009.com

Weekly Downloads

Renders any Flutter widget to PNG, from a command-line expression or the project's `@Preview` functions, and diffs two runs pixel-wise. A small CLI shaped for AI agents.

Repository (GitHub)
View/report issues

Topics

#flutter #preview #screenshot #visual-diff #ai

License

MIT (license)

Dependencies

analyzer, args, crypto, image, path, yaml

More

Packages that depend on shutter