buoy 0.3.0
buoy: ^0.3.0 copied to clipboard
Buoy devtools for Flutter — in-app floating devtools that stream live to the Buoy Desktop dashboard. Umbrella package for the Buoy tool suite.
// Buoy for Flutter — zero-config setup: one widget wires everything
// (HTTP capture, in-app floating menu, desktop sync, MCP).
import 'package:buoy/buoy.dart';
import 'package:flutter/material.dart';
void main() => runApp(const MyApp());
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
home: const Scaffold(body: Center(child: Text('Your app'))),
builder: (context, child) => BuoyDevTools(
deviceName: 'My App',
child: child ?? const SizedBox.shrink(),
),
);
}
}