archify 1.0.6 copy "archify: ^1.0.6" to clipboard
archify: ^1.0.6 copied to clipboard

A CLI tool for generating clean architecture structure in Flutter projects.

example/main.dart

import 'package:archify/archify.dart';

void main() {
  final cli = ArchifyCLI();

  // Configure the base project structure
  cli.run(['configure']);

  // Generate a standard feature/module called "auth"
  cli.run(['generate', 'auth']);

  // Generate a custom feature using a YAML template
  // Make sure to replace "custom_feature" and path with your own values
  cli.run([
    'custom',
    'custom_feature',
    '--template',
    'arch/custom_feature_template.yaml',
  ]);

  // Show the current Archify CLI version
  cli.run(['version']);
}
2
likes
150
points
410
downloads

Publisher

unverified uploader

Weekly Downloads

A CLI tool for generating clean architecture structure in Flutter projects.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

path, yaml, yaml_edit

More

Packages that depend on archify