bkey_uikit 0.0.1 copy "bkey_uikit: ^0.0.1" to clipboard
bkey_uikit: ^0.0.1 copied to clipboard

BMoni design system for Flutter — typography, colour tokens, themes and a curated set of reusable UI primitives shared across Bkey products.

example/lib/main.dart

import 'package:bkey_uikit/bkey_uikit.dart';
import 'package:flutter/material.dart';

import 'home_page.dart';

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

/// Root of the BKey UI Kit gallery example.
///
/// Applies [BMoniTheme.darkTheme] so every component is rendered with the
/// production look-and-feel out of the box.
class BkeyUikitGalleryApp extends StatelessWidget {
  const BkeyUikitGalleryApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'BKey UI Kit Gallery',
      debugShowCheckedModeBanner: false,
      themeMode: ThemeMode.system,
      theme: BMoniTheme.darkTheme(),
      home: const HomePage(),
    );
  }
}
2
likes
160
points
32
downloads

Documentation

Documentation
API reference

Publisher

verified publisherbkey.me

Weekly Downloads

BMoni design system for Flutter — typography, colour tokens, themes and a curated set of reusable UI primitives shared across Bkey products.

Repository (GitHub)
View/report issues

Topics

#ui #design-system #widget #components #bkey

License

Apache-2.0 (license)

Dependencies

cached_network_image, characters, dotted_border, flutter, flutter_svg

More

Packages that depend on bkey_uikit