quickfire 1.0.2 quickfire: ^1.0.2 copied to clipboard
A powerful flutter CLI tool to speed up your development cycle with BLoC Feature drive approach, authentication, database, onboarding, UI components and Payments.
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.2
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/commands/tools/choice_selctor.dart';
import 'package:quickfire/commands/tools/cli_handler.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';