Skip to content

create

  • Package name must contain no dashes or dots
  • Convention is to use all lower case with snake case
# create a new project
flutter create "package_name"

# create flutter project from existing code with a new name
flutter create "." --project-name "personality_app"

# choose platform
flutter create "." --platforms=macos