Skip to content

Instantly share code, notes, and snippets.

@gringoh
Last active June 22, 2021 15:58
Show Gist options
  • Save gringoh/894942147f3b084c135697ce2777dca5 to your computer and use it in GitHub Desktop.
Save gringoh/894942147f3b084c135697ce2777dca5 to your computer and use it in GitHub Desktop.
[Flutter: Create project, library or plugin] #flutter

Flutter: Create project, library or plugin

  • create project
flutter create --org com.example.project.name  --androidx -i swift -a kotlin --description 'Description goes here' flutter_project_name
  • create library/package
flutter create --org com.example.package.name  --description 'Description goes here' --template=package flutter_package_name
  • create plugin
flutter create --org com.example.plugin.name --description 'Description goes here' --template=plugin --platforms=android,ios flutter_plugin_name
dart create -t console-simple domain
flutter create -t package --org ar.com.emanuellopez.shopping.data data
flutter create -t package --org ar.com.emanuellopez.shopping.data mock
flutter create -t package --org ar.com.emanuellopez.shopping.presentation presentation
flutter create -t app --org ar.com.emanuellopez.shopping.app app
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment