Skip to content

Instantly share code, notes, and snippets.

@letenkov
Created April 20, 2020 00:47
Show Gist options
  • Save letenkov/a001e465f4ce8247903b7811d6f5914f to your computer and use it in GitHub Desktop.
Save letenkov/a001e465f4ce8247903b7811d6f5914f to your computer and use it in GitHub Desktop.
Create a new project using the flutter wrapper
Create a new project using the flutter wrapper
You can create a new Flutter project without installing Flutter globally on your machine.
# 1. Create an empty git repo
mkdir flutter_wrapper_project && cd "$_"
git init
# 2. Install flutterw
sh -c "$(curl -fsSL https://raw.githubusercontent.com/passsy/flutter_wrapper/master/install.sh)"
# 3. Create Flutter project
./flutterw create .
./flutterw run
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment