flutter_devstat 1.3.5
flutter_devstat: ^1.3.5 copied to clipboard
A CLI tool to analyze Flutter project structure and annotate Dart files with their lib/ paths.
// example/example.dart
import '../bin/flutter_devstat.dart';
void main() async {
print('Running Flutter DevStat Example...');
// Example: Analyze the current project
// Make sure you run this from a Flutter project directory.
final analyzer = FlutterProjectAnalyzer(showPaths: true, annotate: false);
await analyzer.analyze();
print('\nā
Example run complete.');
}