What is Flutter? Flutter is Google’s portable UI toolkit for building beautiful, natively-compiled applications for mobile, web, and desktop from a single codebase. And Flutter have Many characteristics and you can see here . How to Install it in your Linux Machine? You can download the Flutter package here . Extract the file in a separate folder. cd ~/development tar xf ~/Downloads/flutter_linux_v1.5.4-hotfix.2-stable.tar.xz Add the flutter tool to your path: export PATH="$PATH:`pwd`/flutter/bin" And enter the code flutter precache to check the flutter installed. And Run Flutter Doctor By the command flutter doctor to see any folder is missing for that. (From Flutter.dev) Android Setup: Download and install the android studio . Start Android Studio, and go through the ‘Android Studio Setup Wizard’. This installs the latest Android SDK, Android SDK Platform-Tools, and Android SDK Build-Tools, which are required by Flutter when
The Technical Things That Every Programmer should know.