component_save_annotation 0.0.1 copy "component_save_annotation: ^0.0.1" to clipboard
component_save_annotation: ^0.0.1 copied to clipboard

Useful for automating the documentation and tracking of widget components across projects.

example/lib/main.dart

import 'package:example/custom_button.dart';
import 'package:firebase_core/firebase_core.dart';
import 'package:flutter/material.dart';

Future<void> main() async {
  await Firebase.initializeApp();
  runApp(const MainApp());
}

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

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      home: Scaffold(
        body: Center(
          child: CustomButton(label: 'Hello World'),
        ),
      ),
    );
  }
}
0
likes
150
points
39
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

Useful for automating the documentation and tracking of widget components across projects.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

flutter

More

Packages that depend on component_save_annotation