flutterflow_components 0.0.9 copy "flutterflow_components: ^0.0.9" to clipboard
flutterflow_components: ^0.0.9 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! ๐Ÿš€โœจ

#