clean_architecture_kit 1.0.0
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(),
);
}
}