buoy 0.2.0 copy "buoy: ^0.2.0" to clipboard
buoy: ^0.2.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.

example/lib/main.dart

// 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(),
      ),
    );
  }
}
0
likes
150
points
198
downloads

Documentation

API reference

Publisher

verified publisherbuoy.gg

Weekly Downloads

Buoy devtools for Flutter — in-app floating devtools that stream live to the Buoy Desktop dashboard. Umbrella package for the Buoy tool suite.

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

buoy_core, buoy_network, flutter

More

Packages that depend on buoy