flyer 0.0.1
flyer: ^0.0.1 copied to clipboard
A powerful CLI package to speed up Flutter app development by automating repetitive tasks like creating features, pages, forms, and generating Dart model classes from JSON and and reformatting code an [...]
Use this package as an executable
Install it
You can install the package from the command line:
dart pub global activate flyerUse it
The package has the following executables:
$ flyer
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add flyerWith Flutter:
$ flutter pub add flyerThis will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get):
dependencies:
flyer: ^0.0.1Alternatively, your editor might support dart pub get or flutter pub get. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:flyer/app_creator.dart';
import 'package:flyer/commands/fiend_command.dart';
import 'package:flyer/commands/init_command.dart';
import 'package:flyer/commands/make_command.dart';
import 'package:flyer/commands/run_command.dart';
import 'package:flyer/core/app_helper.dart';
import 'package:flyer/core/colors_text.dart';
import 'package:flyer/core/constants/packages_name.dart';
import 'package:flyer/core/creator_util.dart';
import 'package:flyer/core/extensions.dart';
import 'package:flyer/core/helpers/updated_features_in_config.dart';
import 'package:flyer/core/user_helper.dart';
import 'package:flyer/creatores.dart';
import 'package:flyer/functions/delete_file.dart';
import 'package:flyer/functions/extract_strings.dart';
import 'package:flyer/functions/fiend_unused_package.dart';
import 'package:flyer/functions/fined_unused_assets.dart';
import 'package:flyer/functions/fined_unused_file.dart';
import 'package:flyer/functions/formate_code.dart';
import 'package:flyer/functions/generate_dart_class_from_json.dart';
import 'package:flyer/functions/generate_dart_class_from_json_feature.dart';
import 'package:flyer/functions/install_package.dart';
import 'package:flyer/functions/run_pub_get.dart';
import 'package:flyer/jsonToDart/helpers.dart';
import 'package:flyer/jsonToDart/model_generator.dart';
import 'package:flyer/jsonToDart/syntax.dart';
import 'package:flyer/samples/app_colors_sample.dart';
import 'package:flyer/samples/app_config_sample.dart';
import 'package:flyer/samples/app_feature_sample.dart';
import 'package:flyer/samples/app_storage_sample.dart';
import 'package:flyer/samples/app_theme_sample.dart';
import 'package:flyer/samples/cubit_samples.dart';
import 'package:flyer/samples/feature_sample.dart';
import 'package:flyer/samples/form_sample.dart';
import 'package:flyer/samples/main_sample.dart';
import 'package:flyer/samples/page_sample.dart';
import 'package:flyer/samples/splash_feature_sample.dart';
import 'package:flyer/samples/splash_page_sample.dart';
import 'package:flyer/samples/state_samples.dart';
import 'package:flyer/samples/utils/notification_util_sample.dart';
import 'package:flyer/theme/app_colors.dart';
import 'package:flyer/theme/app_theme.dart';