Get started with Flutter on Windows

Neila
Neila
Sep 7, 2018 · 1 min read
Flutter 💖 Dart

Forget Expo; Flutter is the revolution.

Why Flutter will Take Off in 2018

What’s Revolutionary about Flutter?

  1. Install IDE Visual Studio Code or Intellij (my preference)
  2. Install Git for Windows (I recommend Git Bash too)
  3. Open CMD
  4. Run git clone -b master https://github.com/flutter/flutter.git
  5. Run ./flutter/bin/flutter --version to ensure it has been installed successfully
  6. Add `C:\Users\Meow\flutter\bin` to your Path environment variable
  7. Restart CMD
  8. Run flutter doctor
  9. Open your IDE and install Dart and Flutter plugins
  10. Run flutter create hello-world
  11. Now you can create your virtual device like I have done using Genymotion or using Android Studio.
  12. Run cd hello-world
  13. Run flutter run
  14. Alternatively you can run the app via the IDE
  15. 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!