flutterflow_components 0.0.8 copy "flutterflow_components: ^0.0.8" to clipboard
flutterflow_components: ^0.0.8 copied to clipboard

A complete, open source, rapid development package for creating apps using Flutter/Dart.

🎨 FlutterFlow Components 🚀

#

Library Logo

Pub status GitHub license Pub version forks

Pub Package Star on Github Forks on Github Contributors Code Size License: MIT Platform

A collection of delightful Flutter components for building beautiful and responsive user interfaces.

Features #

  • 🎨 Consistent Colors and Fonts
  • đŸ“Ļ Local Assets Management
  • 📊 Enums and Extensions for Easy Development
  • 🌐 Responsive Design Components
  • 🌈 Beautiful Buttons and Fonts
  • ⚙ī¸ General-purpose Utilities
  • 🚀 Loading and Skeleton Widgets
  • ... and much more!

📗 Installation #

Add the following line to your pubspec.yaml file:

dependencies:
  flutterflow_components: <check latest version>

Then run:

$ flutter pub get

🗜ī¸ Usage #

Import the library in your Dart file:

import 'package:flutterflow_components/flutterflow_components.dart' as components;

Now you can start using the various components provided by flutterflow_components to enhance your Flutter app!

🈂ī¸ Example #

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

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: Text('FlutterFlow Components Example'),
        ),
        body: Center(
          child: Text(
            'Welcome to FlutterFlow Components!',
            style: components.getBoldStyle(), //This (components.) allows you to access all components
          ),
        ),
      ),
    );
  }
}

ℹī¸ Documentation #

For detailed documentation and examples, visit the official documentation.

🤙 Contributing #

We welcome contributions! Please read the Contribution Guide for details on how to contribute to this project.

đŸ’ŗ License #

This project is licensed under the MIT License - see the LICENSE file for details.

🛎ī¸ Connect with Us #

Happy coding! 🚀✨

#