buoy_perf_monitor 0.3.0 copy "buoy_perf_monitor: ^0.3.0" to clipboard
buoy_perf_monitor: ^0.3.0 copied to clipboard

Buoy performance monitor for Flutter — a pure-Dart sampler (FrameTiming FPS/jank + ProcessInfo RSS) driving a live on-device HUD that streams to Buoy Desktop.

example/lib/main.dart

// Buoy performance monitor — one line of wiring:
// registerBuoyPerfMonitor() installs the sampler + registers the tool and its
// HUD overlay; BuoyDevTools mounts the in-app menu and starts desktop sync.
import 'package:buoy_perf_monitor/buoy_perf_monitor.dart';
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';

void main() {
  if (kDebugMode) registerBuoyPerfMonitor();
  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
140
points
105
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

Buoy performance monitor for Flutter — a pure-Dart sampler (FrameTiming FPS/jank + ProcessInfo RSS) driving a live on-device HUD that streams to Buoy Desktop.

License

unknown (license)

Dependencies

buoy_core, buoy_shared_ui, flutter, shared_preferences

More

Packages that depend on buoy_perf_monitor