flutter_copilot 0.9.1
flutter_copilot: ^0.9.1 copied to clipboard
Copilot for Flutter apps. Let an AI agent understand and navigate your app UI through the semantics tree.
import 'package:flutter/widgets.dart';
import 'package:flutter_copilot/flutter_copilot.dart';
import 'app/copilot_example_app.dart';
import 'services/copilot_service.dart';
void main() {
runApp(
CopilotApp(
config: buildCopilotConfig(),
child: const CopilotExampleApp(),
),
);
}