flutter_restore 1.3.0
flutter_restore: ^1.3.0 copied to clipboard
Static compatibility scanner for legacy Flutter projects.
example/flutter_restore_example.dart
import 'package:flutter_restore/flutter_restore.dart';
void main(List<String> arguments) {
final projectPath = arguments.isEmpty ? '.' : arguments.single;
final snapshot = ProjectScanner().scan(projectPath);
final findings = RuleRunner().evaluate(snapshot);
final report = PlainReportRenderer().render(snapshot, findings);
print(report);
}