flui_kit 0.0.2+1 copy "flui_kit: ^0.0.2+1" to clipboard
flui_kit: ^0.0.2+1 copied to clipboard

A Flutter library offering modern high customizable components and screens for seamless app development.

FLUI Kit Logo

FLUI Kit #

A modern library of reusable components and screens for Flutter, designed to accelerate mobile application development with consistent design.

📦 Installation #

Add this dependency to your pubspec.yaml file:

dependencies:
  flui_kit: ^0.0.2+1

Then run:

flutter pub get

🎯 Features #

  • Rich collection of reusable UI components
  • Pre-built screens for common use cases
  • Customizable and consistent themes
  • Full dark mode support
  • Performance-optimized components
  • Detailed documentation and usage examples

🛠️ Available Components #

All components can be found at FluiKit Components.

Custom Components #

  • Card plan switcher

💡 Usage #

import 'package:flui_kit/flui_kit.dart';

// Button usage example
FluiButton(
  text: 'Login',
  onPressed: () {
    // Action
  },
)

// Login screen usage example
FluiLoginScreen(
  onLogin: (email, password) async {
    // Login logic
  },
)

🎨 Customization #

The kit supports full customization via ThemeData:

FluiTheme(
  data: FluiThemeData(
    primaryColor: Colors.blue,
    secondaryColor: Colors.green,
    // Other configurations...
  ),
  child: YourApp(),
)

📱 Examples #

Check out the example folder for complete implementations and use cases.

🤝 Contributing #

Contributions are welcome! Please read our contribution guidelines for more details.

  1. Fork the project
  2. Create your feature branch (git checkout -b feat/AmazingFeature)
  3. Create your fix branch (git checkout -b fix/AmazingFeature)
  4. Commit your changes (git commit -m 'Add some AmazingFeature')
  5. Push to the branch (git push origin feature/AmazingFeature)
  6. Open a Pull Request

📄 License #

Distributed under a custom MIT License. See LICENSE for more information.

📧 Contact #

For any questions or suggestions, feel free to open an issue or contact us directly.


Made with ❤️ by your team

8
likes
130
points
9
downloads

Publisher

verified publishermaeltoukap.me

Weekly Downloads

A Flutter library offering modern high customizable components and screens for seamless app development.

Repository (GitHub)

Documentation

API reference

License

unknown (license)

Dependencies

flutter, flutter_web_plugins, plugin_platform_interface, web

More

Packages that depend on flui_kit