flutter-architecture-expert
Installation
SKILL.md
flutter_it Architecture Expert - App Structure & Patterns
What: Architecture guidance for Flutter apps using the flutter_it construction set (get_it + watch_it + command_it + listen_it).
App Startup
void main() {
WidgetsFlutterBinding.ensureInitialized();
configureDependencies(); // Register all services (sync)
runApp(MyApp());
}
// Splash screen waits for async services
class SplashScreen extends WatchingWidget {
Widget build(BuildContext context) {
final ready = allReady(
onReady: (context) => Navigator.pushReplacement(context, mainRoute),
Related skills