Get started with Flutter on Windows
Sep 7, 2018 · 1 min read

Forget Expo; Flutter is the revolution.
Why Flutter will Take Off in 2018
What’s Revolutionary about Flutter?
- Install IDE Visual Studio Code or Intellij (my preference)
- Install Git for Windows (I recommend Git Bash too)
- Open CMD
- Run
git clone -b master https://github.com/flutter/flutter.git - Run
./flutter/bin/flutter --versionto ensure it has been installed successfully - Add `C:\Users\Meow\flutter\bin` to your
Pathenvironment variable - Restart CMD
- Run
flutter doctor - Open your IDE and install Dart and Flutter plugins
- Run
flutter create hello-world - Now you can create your virtual device like I have done using Genymotion or using Android Studio.
- Run
cd hello-world - Run
flutter run - Alternatively you can run the app via the IDE
- Party 🎉
Continue with this tutorial: Make a Todo app with Flutter
On the way: My Coding Bias on Windows 10
On the way: Read My React Bias
Happy Coding!
