Dart Tutorials: Basics

🎯 Dart (DartLang) Introduction: Getting started with Dart/Flutter

Flutter is a framework written in Dart language for building native applications for iOS and Android platforms. Since it is written in Dart, understanding of the basic concepts of Dart language is essential to work with Flutter.

Uday Hiwarale
RunDart
Published in
5 min readNov 24, 2019

--

(Background image source: pexels.com)

TL;DR

All the code used in these articles is available in a Github repository.

Dart is a programming language developed at Google, which means it is believed to be developed and maintained for years to come. The original intention behind creating Dart was to replace JavaScript in the browser as Dart has its own VM but failed to achieve this goal.

Nevertheless, Dart is a statically typed and object-oriented programming language that can be compiled to machine code or transpiled to JavaScript or can be run as like an interpreted language on the Dart VM…

--

--