https://github.com/juicycleff/flutter_unity_cli
Flutter unity cli for large scale projects
https://github.com/juicycleff/flutter_unity_cli
Last synced: 3 months ago
JSON representation
Flutter unity cli for large scale projects
- Host: GitHub
- URL: https://github.com/juicycleff/flutter_unity_cli
- Owner: juicycleff
- License: mit
- Created: 2020-09-10T11:14:18.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-09-17T12:05:24.000Z (about 5 years ago)
- Last Synced: 2024-04-14T06:45:21.720Z (over 1 year ago)
- Language: Dart
- Size: 190 KB
- Stars: 8
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
## A command-line application for managing flutter unity at scale
Use this for managing flutter unity project with large teams.
#### Install.
```shell script
pub global activate flutter_unity_cli
```#### Usage.
To bootstrap flutter unity plugin project with setup to your flutter app, use this command.
Your folder should be like this before running the command from root.
Also make sure you are in the same folder level as your flutter application.```yaml
root:
-
``````shell script
$ fuw create
```Your folder should be like this
```yaml
root:
-
- flutter_unity_widget
```Then add the dependency to your flutter app project
```yaml
dependencies:
flutter:
sdk: flutter
flutter_unity_widget:
path: ../flutter_unity_widget```
To upgrade the plugin to latest version, use
```shell script
$ cd flutter_unity_widget$ fuw update
```To upgrade the CLI to latest version, use
```shell script
$ fuw upgrade
```