A modern Flutter UI package with beautiful, customizable components designed for clean and consistent user interfaces.
🎨 Modern Design
🌙 Dark Mode Support
📊 Data Visualization
📱 Responsive
🎯 Customizable
♿ Accessible
import 'package:flutter/material.dart'; import 'package:hux/hux.dart'; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( title: 'Hux UI Demo', theme: HuxTheme.lightTheme, darkTheme: HuxTheme.darkTheme, home: Scaffold( body: Column( children: [ HuxButton( onPressed: () => print('Hello Hux!'), child: Text('Get Started'), variant: HuxButtonVariant.primary, ), HuxInput( label: 'Your Name', hint: 'Enter your name', ), HuxDateInput( label: 'Birth Date', onDateChanged: (date) => print('Selected: $date'), ), HuxCard( title: 'Welcome to Hux UI', subtitle: 'Build beautiful Flutter apps', child: Text('Start creating amazing user interfaces'), ), ], ), ), ); } }