showHelp static method

void showHelp()

Implementation

static void showHelp() {
  print('');
  print('🚀  DartGenX - Flutter Code Generator');
  print('────────────────────────────────────────────────────');
  print('');
  print('COMMANDS');
  print('');
  print('  config                    Generate dartgenx.yaml configuration file.');
  print('  api_client                Generate api_client.dart and logger_interceptor.dart.');
  print('  assets                    Generate assets_utils.dart from assets folder.');
  print('  fcm                       Generate fcm_service.dart.');
  print('  refresh                   Generate refresh_token.dart.');
  print('  local_storage             Generate GetStorageService or SharedPreferencesService.');
  print('  sqflite                   Generate SqfliteService.');
  print('  pagination                Generate pagination_controller.dart and paging_list_view.dart.');
  print('  bloc                      Generate bloc directory (bloc.dart, state.dart, event.dart).');
  print('  getx                      Generate getx directory (controllers, bindings, views).');
  print('  app-icon                  Generate platform-specific app icons.');
  print('  theme                     Generate complete Flutter theme setup.');
  print('  translate                 Translate JSON values and generate localized JSON file.');
  print('');
  print('────────────────────────────────────────────────────');
  print('Run "dartgenx <command>" to execute a specific generator.');
  print('');
}