In this flutter tutorial, we are going to create our first flutter app in android studio. We will first learn how to create a new flutter project on the previously installed Android studio.
What is flutter?
As stated in the flutter.dev, Flutter is Google’s open-source framework for building beautiful, natively compiled, multi-platform applications from a single codebase. Flutter single codebase, meaning we can write code for one single app, and flutter will make it runnable on 6 different platforms IOS, Android, Web, Desktop, Linux, and macOS. Flutter uses dart as a programming language.
Is Flutter Fast?
There could be a question in many peoples mind that is Flutter fast? Yes, Flutter code compiles to ARM or Intel machine code as well as JavaScript, for fast performance on any device. Try it in flutter Dartpad.
Is Flutter Productive?
Flutter increases productivity and achieve real time goals. Flutter Build and iterate quickly with Hot Reload. Update code and see changes almost instantly, without losing state. Try it in Flutter DartPad.
Is Flutter Flexible?
Control every pixel to create customized, adaptive designs that look and feel great on any screen. Try it in Flutter DartPad.What is dart language?
As stated in the dart.dev, Dart is a client-optimized language for developing fast apps on any platform. Its goal is to offer the most productive programming language for multi-platform development, paired with a flexible execution runtime platform for app frameworks.
To get started with flutter dart language, please follow this link.