flutter_compile 0.9.0
flutter_compile: ^0.9.0 copied to clipboard
A CLI that automates Flutter framework, DevTools, and engine contributor environment setup — depot_tools, gclient sync, GN flags, and ninja builds.
example/lib/main.dart
import 'dart:io';
void main() async {
await Process.run('dart', ['pub', 'global', 'activate', 'flutter_compile']);
final result = await Process.run('flutter_compile', ['--help']);
print(result.stdout);
await Future.wait([
stdout.close(),
stderr.close(),
]);
exit(0);
}