fonde_ui 0.3.0
fonde_ui: ^0.3.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',
home: FondeNotificationOverlay(
alignment: Alignment.bottomRight,
child: CatalogShell(),
),
),
);
}