Skip to content

Instantly share code, notes, and snippets.

@vamsee9
Created September 19, 2021 13:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vamsee9/0fce3462de92f5e31ee8488232dfc77e to your computer and use it in GitHub Desktop.
Save vamsee9/0fce3462de92f5e31ee8488232dfc77e to your computer and use it in GitHub Desktop.
To create flutter app with packagename - VSCode
#!/usr/bin/env bash
###################################################################
#Script Name : flutter.sh
#Description : To create flutter app with packagename
#Args : echo and read strings
#Author : Vamsi krishna kari
#Email : 4n0n5ur7@protonmail.com
#License : The MIT License
###################################################################
echo ""
echo "Script Name : flutter.sh"
echo "Description : To create flutter app with packagename"
echo "Author : Vamsi krishna kari"
echo "Email : 4n0n5ur7@protonmail.com"
echo "License : The MIT License"
echo ""
echo "To create flutter app with company name"
echo ""
read -p "Enter package name (Eg. com.yourdomain) -> " orgName
read -p "Enter app name in lowercases -> " appName
echo ""
echo "Your applicationID is : $orgName.$appName"
echo ""
flutter create --org $orgName $appName
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment