DEV Community

Cover image for Setting up Flutter
Redmund Nacario
Redmund Nacario

Posted on

Setting up Flutter

Setting up Flutter is easy. Bookmark or Read this tutorial to have an idea how easy to start mobile app development in both iOS and android.

Steps

  1. Install flutter via terminal using the following command:

    brew install --cask flutter

    This will install dart and flutter in “/usr/local/bin”

  2. Check your installation. Use this command to determine if there are missing SDK tools or requirements.

    flutter doctor

    If you manage to install flutter, dart and its required tools, it will look like the same as the image shown below. Initially, some tools are missing. It will be marked with check if you complete Step #3.

    Image description

  3. Install the tools specific for Android and IOS app development. See more in this Article

Top comments (0)