hornbill 1.3.2 copy "hornbill: ^1.3.2" to clipboard
hornbill: ^1.3.2 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:google_fonts/google_fonts.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(
        appBarFontFamily: GoogleFonts.googleSansFlex().fontFamily,
      ).lightTheme(),
      darkTheme: HornbillTheme(
        appBarFontFamily: GoogleFonts.googleSansFlex().fontFamily,
      ).darkTheme(),
      themeMode: ThemeMode.dark,
      home: const HornbilExampleApp(),
    );
  }
}
0
likes
150
points
354
downloads

Documentation

API reference

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

Apache-2.0 (license)

Dependencies

flutter, flutter_highlight, material_symbols_icons, plugin_platform_interface

More

Packages that depend on hornbill

Packages that implement hornbill