bkey_uikit 0.0.1
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(),
);
}
}