flutterflow_components 0.0.9 flutterflow_components: ^0.0.9 copied to clipboard
A complete, open source, rapid development package for creating apps using Flutter/Dart.
๐จ FlutterFlow Components ๐
#
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 #
- Follow us on Github: @Syf-Almjd
- Connect with Developer via Portfolio: SaifAlmajd
Happy coding! ๐โจ
#