flyer 1.3.0
flyer: ^1.3.0 copied to clipboard
A CLI tool to speed up Flutter development by automating feature creation, project initialization, deep linking, localization, and code generation.
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: ^1.3.0Alternatively, 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/commands/deeplink_command.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/commands/watch_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/creators.dart';
import 'package:flyer/functions/deeplink/deeplink_setup.dart';
import 'package:flyer/functions/deeplink/deeplink_test.dart';
import 'package:flyer/functions/deeplink/extract_project_info.dart';
import 'package:flyer/functions/delete_file.dart';
import 'package:flyer/functions/extract_strings.dart';
import 'package:flyer/functions/find_unused_assets.dart';
import 'package:flyer/functions/find_unused_file.dart';
import 'package:flyer/functions/find_unused_package.dart';
import 'package:flyer/functions/format_code.dart';
import 'package:flyer/functions/get_app_name.dart';
import 'package:flyer/functions/install_package.dart';
import 'package:flyer/functions/localization/add_keys_to_arb.dart';
import 'package:flyer/functions/localization/analyze_missing_keys.dart';
import 'package:flyer/functions/run_pub_get.dart';
import 'package:flyer/functions/watch_localization.dart';
import 'package:flyer/samples/api_util_sample.dart';
import 'package:flyer/samples/app_bloc_sample.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_notifications_sample.dart';
import 'package:flyer/samples/app_storage_sample.dart';
import 'package:flyer/samples/app_styles_sample.dart';
import 'package:flyer/samples/app_theme_sample.dart';
import 'package:flyer/samples/bottom_nav_data_sample.dart';
import 'package:flyer/samples/bottom_nav_item_model_sample.dart';
import 'package:flyer/samples/cubit_samples.dart';
import 'package:flyer/samples/deeplink_samples.dart';
import 'package:flyer/samples/extensions/context_extension_sample.dart';
import 'package:flyer/samples/feature_sample.dart';
import 'package:flyer/samples/form_sample.dart';
import 'package:flyer/samples/home_sample.dart';
import 'package:flyer/samples/main_sample.dart';
import 'package:flyer/samples/master_page_sample.dart';
import 'package:flyer/samples/onboarding/onboarding_data_sample.dart';
import 'package:flyer/samples/onboarding/onboarding_feature_sample.dart';
import 'package:flyer/samples/onboarding/onboarding_model_sample.dart';
import 'package:flyer/samples/onboarding/onboarding_page_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';