webmcp_flutter 0.1.0
webmcp_flutter: ^0.1.0 copied to clipboard
A detection-first WebMCP tool registry and widget lifecycle layer for Flutter web applications.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'example_screen.dart';
void main() {
runApp(const WebMcpPilotExample());
}
/// The example application.
final class WebMcpPilotExample extends StatelessWidget {
/// Creates the example application.
const WebMcpPilotExample({super.key});
@override
Widget build(BuildContext context) {
return const MaterialApp(home: ExampleScreen());
}
}