flutterflow_components 0.0.8 flutterflow_components: ^0.0.8 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! đâ¨
#