A comprehensive Flutter design system package created by Waveful, providing scalable and consistent UI components for modern Flutter applications.
LuckyUI is a complete design system that offers a cohesive set of components, themes, and design tokens to help developers build beautiful and consistent Flutter applications. Built with scalability and maintainability in mind, LuckyUI provides everything you need to create professional-grade mobile and web applications.
- Comprehensive Color Palette: Pre-defined color tokens with semantic naming
- Typography System: Consistent text styles and hierarchy
- Spacing & Layout: Standardized spacing tokens and layout utilities
- Theme Support: Light and dark mode support out of the box
LuckyButton- Primary, secondary, and variant button stylesLuckyTextButton- Text-based button componentsLuckyIconButton- Icon-only buttons with various sizesLuckySwitch- Customizable toggle switchesLuckyAppBar- Consistent app bar implementation
LuckyTextField- Text field wrapper with validation supportLuckySearchBar- Search input with built-in functionalityLuckyListItems- Standardized list item components
LuckyNavBar- Bottom navigation bar componentLuckyTabBar- Tab navigation implementationLuckyModal- Modal dialog systemLuckyBottomSheet- Bottom sheet componentsLuckyFilters- Filter and selection components
LuckyBadge- Notification badges and labelsLuckyProgressBar- Progress indicatorsLuckyRedDot- Notification dotsLuckyIcons- Icon system integrationLuckyToast- Toast notification system
LuckyHeading- Heading text componentsLuckyBody- Body text componentsLuckySmallBody- Small text components
LuckyDivider- Consistent divider components
LuckyTapAnimation- Interactive tap animations
Add LuckyUI to your pubspec.yaml:
dependencies:
luckyui: ^0.0.1Then run:
flutter pub getImport the package in your Dart file:
import 'package:luckyui/luckyui.dart';import 'package:flutter/material.dart';
import 'package:luckyui/luckyui.dart';
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'LuckyUI Demo',
theme: LuckyTheme.light,
home: Scaffold(
appBar: LuckyAppBar(
title: 'My App',
actions: [
LuckyIconButton(
icon: Icons.search,
onPressed: () {},
),
],
),
body: Column(
children: [
LuckyHeading('Welcome to LuckyUI'),
LuckyBody('This is a sample app using LuckyUI components.'),
LuckyButton(
text: 'Get Started',
onPressed: () {},
),
],
),
),
);
}
}// Primary button
LuckyButton(
text: 'Primary Action',
onPressed: () {},
)
// Secondary button
LuckyButton(
text: 'Secondary Action',
variant: ButtonVariant.secondary,
onPressed: () {},
)
// Text button
LuckyTextButton(
text: 'Text Action',
onPressed: () {},
)LuckyTextField(
controller: TextEditingController(),
heading: "Username",
description: "Enter your username",
hintText: "@username",
style: LuckyTextFieldStyleEnum.standard,
)LuckyNavBar(
currentIndex: 0,
onTap: (index) {},
items: [
LuckyNavBarItem(icon: Icons.home, label: 'Home'),
LuckyNavBarItem(icon: Icons.search, label: 'Search'),
LuckyNavBarItem(icon: Icons.person, label: 'Profile'),
],
)LuckyUI provides a comprehensive theming system:
// Light theme
MaterialApp(
theme: LuckyTheme.light,
home: MyHomePage(),
)
// Dark theme
MaterialApp(
theme: LuckyTheme.dark,
home: MyHomePage(),
)
// Custom theme
MaterialApp(
theme: LuckyTheme.light.copyWith(
// Customize theme properties
),
home: MyHomePage(),
)LuckyUI includes a comprehensive set of design tokens:
- Colors: Semantic color system with light/dark variants
- Typography: Consistent text styles and hierarchy
- Spacing: Standardized spacing values
- Border Radius: Consistent corner radius values
- Shadows: Elevation and shadow system
The package includes a comprehensive showcase (LuckyShowcasePage) that demonstrates all available components and their variations. This is perfect for:
- Exploring component capabilities
- Understanding component APIs
- Testing different themes and configurations
- Flutter >= 1.17.0
- Dart SDK >= 3.9.2
hugeicons: ^1.1.1- For comprehensive icon support
We welcome contributions to LuckyUI! Please feel free to submit issues, feature requests, or pull requests.
This project is licensed under the terms specified in the LICENSE file.
For support, questions, or feature requests, please visit our GitHub repository or contact the Waveful team.
Made with ❤️ by Waveful