]> src.twobees.de Git - dotfiles.git/blob - stow/oh-my-zsh/.oh-my-zsh/plugins/flutter/README.md
e5a4fd2eaedaff2baee870b6342bb24cf2b19c86
[dotfiles.git] / stow / oh-my-zsh / .oh-my-zsh / plugins / flutter / README.md
1 ## Flutter plugin
2
3 The Flutter plugin provides completion and useful aliases
4
5 To use it, add `flutter` to the plugins array of your zshrc file:
6
7 ```zsh
8 plugins=(... flutter)
9 ```
10
11 ## Aliases
12
13 | Alias      | Command                 | Description                                                                |
14 | :--------- | :---------------------- | :------------------------------------------------------------------------- |
15 | `fl`       | `flutter`               | Shorthand for flutter command                                              |
16 | `flattach` | `flutter attach`        | Attaches flutter to a running flutter application with enabled observatory |
17 | `flb`      | `flutter build`         | Build flutter application                                                  |
18 | `flchnl`   | `flutter channel`       | Switches flutter channel (requires input of desired channel)               |
19 | `flc`      | `flutter clean`         | Cleans flutter project                                                     |
20 | `fldvcs`   | `flutter devices`       | List connected devices (if any)                                            |
21 | `fldoc`    | `flutter doctor`        | Runs flutter doctor                                                        |
22 | `flpub`    | `flutter pub`           | Shorthand for flutter pub command                                          |
23 | `flget`    | `flutter pub get`       | Installs dependencies                                                      |
24 | `flr`      | `flutter run`           | Runs flutter app                                                           |
25 | `flrd`     | `flutter run --debug`   | Runs flutter app in debug mode (default mode)                              |
26 | `flrp`     | `flutter run --profile` | Runs flutter app in profile mode                                           |
27 | `flrr`     | `flutter run --release` | Runs flutter app in release mode                                           |
28 | `flupgrd`  | `flutter upgrade`       | Upgrades flutter version depending on the current channel                  |