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

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

Library Logo

FlutterFlow Components #

Pub status GitHub license Pub version forks

GitHub stars GitHub 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';

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: getBoldStyle(),
          ),
        ),
      ),
    );
  }
}

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! 🚀✨