Created
April 20, 2020 00:47
-
-
Save letenkov/a001e465f4ce8247903b7811d6f5914f to your computer and use it in GitHub Desktop.
Create a new project using the flutter wrapper
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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