Know the Flutter มาทำความรู้จัก Flutter กัน

Chairach Tamorn
2 min readFeb 5, 2021

Flutter is Google’s UI toolkit for building beautiful, natively compiled applications for mobile, web, and desktop from a single codebase.

Flutter is an SDK that uses Dart language to develop mobile app Android / iOS. But it can be used to develop a Web App or even a Desktop App as well.

The advantage of Flutter

  1. Fast development
    Flutter’s hot reload helps you quickly and easily experiment, build UIs, add features, and fix bugs faster. Experience sub-second reload times without losing state on emulators, simulators, and hardware.
  2. Expressive, beautiful UIs
    Delight your users with Flutter’s built-in beautiful Material Design and Cupertino (iOS-flavor) widgets, rich motion APIs, smooth natural scrolling, and platform awareness.
  3. Native Performance
    Flutter’s widgets incorporate all critical platform differences such as scrolling, navigation, icons and fonts to provide full native performance on both iOS and Android.

To start installing Flutter to Run the App, there are a few simple steps: For Windows

  1. Download Android Studio first. Download Android Studio
  2. Then open Android Studio, go to File> Settings …> Plugins> Type Flutter in the search box> and install Flutter Languages.
  3. Install Flutter SDK
  4. Then go to C: \ UserName \… \ flutter \ flutter_console.bat to run the CMD up, then type flutter doctor.
  5. Then New Flutter Project.
    Open up Android Studio then go to Menu File> New Flutter Project

--

--