Intro (Flutter & Dart)
Intro (Flutter & Dart)
WHAT IS DART..??
The main() function is the top-level function of the Dart. It is the most
important and vital function of the Dart programming language. The
execution of the programming starts with the main() function.
The main() function can be used only once in a program.
Example:
void main()
{
print(“Hello World");
}
Output:
Hello World
WHERE CAN I USED DART..??
Dart is a general-purpose language, and you can
use it for almost anything:
Flutter is an open-source
UI Software Development Kit
created by google,
which allows you to make
cross platform applications
(Android and iOS).
WHY FLUTTER..??
Following are some benefits of flutter:
.) FLUTTER IS CROSS-PLATFORM
Flutter is a cross-platform development tool.
That means software developers can use the
same code base for building an iOS and
Android app. Cross-platform development is
the best method for saving time and resources
throughout the development process.
.) SIMPLE TO LEARN AND USE