Flutter

Steps to install can refer here
https://flutter.dev/docs/get-started/install

Install Flutter for Mac

  1. Download latest Flutter SDK File
  2. Make the path global so can run flutter command anywhere
    export PATH="$PATH:`pwd`/flutter/bin"
  3. Run flutter doctor to check on other dependencies

Install VS Code extension

  1. Flutter
  2. Awesome Flutter Snippets

Start new application in VS Code

  1. Press cmd+shift+P to launch Command Pallette
  2. Type Flutter
  3. Choose Flutter: New Application Project
  4. Wait until main.dart shown on page
  5. Can run the app by pressing F5 or use the play icon on the top right corner
  6. Application will be run on chrome browser

Leave a Reply

Your email address will not be published. Required fields are marked *