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

Shared UI kit and stores for the Buoy Flutter devtools — the macOS/Buoy color systems, list/badge/filter widgets, event-store base, and dev-tool storage keys.

example/lib/main.dart

// buoy_shared_ui is a building block for Buoy's Flutter tools, not an app you
// run directly. This example just renders a couple of the shared widgets so the
// package has a runnable entry point.
import 'package:buoy_shared_ui/buoy_shared_ui.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: Scaffold(
        backgroundColor: BuoyColors.base,
        body: Center(
          child: Column(
            mainAxisAlignment: MainAxisAlignment.center,
            children: [
              PillBadge(color: BuoyColors.primary, child: const Text('SHARED UI')),
              const SizedBox(height: 16),
              const StatusBadge(status: 'success'),
            ],
          ),
        ),
      ),
    );
  }
}
0
likes
140
points
88
downloads

Documentation

API reference

Publisher

verified publisherbuoy.gg

Weekly Downloads

Shared UI kit and stores for the Buoy Flutter devtools — the macOS/Buoy color systems, list/badge/filter widgets, event-store base, and dev-tool storage keys.

License

unknown (license)

Dependencies

buoy_core, flutter, shared_preferences

More

Packages that depend on buoy_shared_ui