Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 4 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
###### Documentation languages

| [pt_BR](README-pt_BR.md) | en_US - this file |[zh_CN](README-zh_CN.md) |
|-------|-------|-------|
| [pt_BR](README-pt_BR.md) | en_US - this file | [zh_CN](README-zh_CN.md) |
| ------------------------ | ----------------- | ------------------------ |

Official CLI for the GetX™ framework.

```dart
// To install:
pub global activate get_cli
pub global activate get_cli
// (to use this add the following to system PATH: [FlutterSDKInstallDir]\bin\cache\dart-sdk\bin

flutter pub global activate get_cli
Expand All @@ -31,7 +31,7 @@ get create page:home
// (Screens have controller, view, and binding)
// Note: you can use any name, ex: `get screen page:login`
// Nota: use this option if the chosen structure was CLEAN (by Arktekko)
get create screen:home
get create screen:home

// To create a new controller in a specific folder:
// Note: you don't need to reference the folder,
Expand Down Expand Up @@ -65,20 +65,6 @@ get generate model on home with assets/models/user.json --skipProvider
//Note: the URL must return a json format
get generate model on home from "https://api.github.com/users/CpdnCristiano"

// To install a package in your project (dependencies):
get install camera

// To install several packages from your project:
get install http path camera

// To install a package with specific version:
get install path:1.6.4

// You can also specify several packages with version numbers

// To install a dev package in your project (dependencies_dev):
get install flutter_launcher_icons --dev

// To remove a package from your project:
get remove http

Expand Down
1 change: 0 additions & 1 deletion lib/commands/commands_list.dart
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ final List<Command> commands = [
HelpCommand(),
VersionCommand(),
InitCommand(),
InstallCommand(),
RemoveCommand(),
SortCommand(),
UpdateCommand(),
Expand Down
1 change: 0 additions & 1 deletion lib/commands/impl/commads_export.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ export 'generate/locales/locales.dart';
export 'generate/model/model.dart';
export 'help/help.dart';
export 'init/flutter/init.dart';
export 'install/install.dart';
export 'remove/remove.dart';
export 'sort/sort.dart';
export 'update/update.dart';
Expand Down
66 changes: 0 additions & 66 deletions lib/commands/impl/install/install.dart

This file was deleted.