fonde_ui 0.4.0 copy "fonde_ui: ^0.4.0" to clipboard
fonde_ui: ^0.4.0 copied to clipboard

Desktop-first Flutter UI component library. Shell layout, precise interaction, and accessibility by default.

example/lib/main.dart

import 'package:flutter/widgets.dart';
import 'package:fonde_ui/fonde_ui.dart';

import 'shell/catalog_shell.dart';

void main() {
  runApp(
    const FondeApp(
      title: 'Fonde UI Catalog',
      enableEyeDropper: true,
      home: FondeNotificationOverlay(
        alignment: Alignment.bottomRight,
        child: CatalogShell(),
      ),
    ),
  );
}