hornbill 1.2.0 copy "hornbill: ^1.2.0" to clipboard
hornbill: ^1.2.0 copied to clipboard

A lightweight, beautify Flutter UI component package inspired by Material Design 3 Expressive, with a focus on simplicity, elegance, and ease of use.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:hornbill/hornbill.dart';
import 'package:hornbill_example/app.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      theme: HornbillTheme(
        // dynamicSchemeVariant: DynamicSchemeVariant.monochrome,
      ).lightTheme(),
      darkTheme: HornbillTheme(
        // dynamicSchemeVariant: DynamicSchemeVariant.monochrome,
      ).darkTheme(),
      home: const HornbilExampleApp(),
    );
  }
}
0
likes
0
points
354
downloads

Publisher

unverified uploader

Weekly Downloads

A lightweight, beautify Flutter UI component package inspired by Material Design 3 Expressive, with a focus on simplicity, elegance, and ease of use.

Homepage
Repository

License

unknown (license)

Dependencies

flutter, material_symbols_icons, plugin_platform_interface

More

Packages that depend on hornbill

Packages that implement hornbill