clean_architecture_kit 1.0.0 copy "clean_architecture_kit: ^1.0.0" to clipboard
clean_architecture_kit: ^1.0.0 copied to clipboard

A custom linter to enforce Clean Architecture principles in Dart and Flutter projects, with code actions to streamline development.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'features/auth/presentation/pages/home_page.dart';

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

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


  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Clean Architecture Lints Demo',
      theme: ThemeData(primarySwatch: Colors.blue),
      home: const HomePage(),
    );
  }
}
2
likes
0
points
127
downloads

Publisher

unverified uploader

Weekly Downloads

A custom linter to enforce Clean Architecture principles in Dart and Flutter projects, with code actions to streamline development.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

analyzer, analyzer_plugin, code_builder, custom_lint_builder, dart_style, glob, path, yaml

More

Packages that depend on clean_architecture_kit