quickfire 1.0.0 quickfire: ^1.0.0 copied to clipboard
A powerful flutter CLI tool to generate bloc based feature driven development.
Use this package as an executable
Install it
You can install the package from the command line:
dart pub global activate quickfire
Use it
The package has the following executables:
$ quickfire
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add quickfire
This will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get
):
dependencies:
quickfire: ^1.0.0
Alternatively, your editor might support dart pub get
. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:quickfire/commands/create_project/create_project.dart';
import 'package:quickfire/core/auth_handler.dart';
import 'package:quickfire/core/command_handler.dart';
import 'package:quickfire/core/main_handler.dart';
import 'package:quickfire/core/notification_handler.dart';
import 'package:quickfire/core/on_boarding_creation.dart';
import 'package:quickfire/core/stripe_handler.dart';