Dart Learning Guide

A Complete Guide to the Dart Programming Language

Last updated 2022-01-10 | 4.8

- Programming Fundamental
- Learn Dart from the ground up
- step-by-step
- Everything you need in Dart to get started with Flutter

What you'll learn

Programming Fundamental
Learn Dart from the ground up
step-by-step
Everything you need in Dart to get started with Flutter
Learn all the basics without stopping after them: Dive deeply into Dart and become an advanced developer

* Requirements

* No programming experience needed. You will learn everything you need to know

Description

There are way too many programming languages and infinite use-cases for each one of them, every day developers are coming up with something new and we need to keep up with the flow.

Both of these technologies are relatively new when you compare them to the most popular languages and frameworks, they have been looking over for some years now but I would consider this combo to be ahead of its time like if you sold an electric car in 1995.

Let me tell you why:


What is Dart?
Let’s kick this off by explaining some qualities of Dart.

First, it is developed by Google and it launched in 2011. Google uses Dart to develop many of its main applications including Ads which as you can imagine must require quite a solid build.

Dart is very flexible in the way it is compiled and executed, it is in fact the only programming language capable of compiling JIT (Just In Time — used during development) and AOT (Ahead Of Time — used when the app is released), it can also be compiled to Javascript in order to be run by browsers or straight to native code. This means its execution is fast.

Thanks to its versatility Dart can be used for client or server-side development. The syntax looks like ‘C’ meaning it is statically typed so this provides more certainty on the types of values you are passing on, but it is also meant to be used in OOP, if you have a background in C you’ll pick it up quick. Dart also shares some similarities with Javascript like the use of arrows and asynchronous functions.

Let’s not forget about ‘hot reload’.

You can test your code like if it was HTML and you were refreshing the page to see the changes. Yes, it is that easy.

Dart has been slept on by the dev community for too long but I think its time is coming with the mobile-first principle that is gaining such massive momentum. It runs fast on all platforms and is easy to pick up and learn by programmers.

Who this course is for:

  • If you're interested in 'Flutter' building real native mobile apps for the two most popular mobile platforms - iOS and Android

Course content

6 sections • 64 lectures

Code of the Course Preview 00:01

Mac Installation Preview 02:56

Windows Installation Preview 05:59

Intellij idea Preview 05:01

VS Code Preview 09:06

Functions Types Preview 10:54

Default, Optional Parameter Preview 04:47

Passing Array through Function Preview 05:00

Recursion Preview 05:02

through Exception Preview 06:42

Lambda Expression Preview 08:13

Higher Order Functions (HOF) Preview 05:08

Where Functions Preview 12:31

Map Function Preview 08:55

Typedef Preview 05:02

Class, Object Preview 11:36

Constructor Preview 11:07

Static & this Preview 10:50

Setter & Getter Preview 03:59

Inheritance Preview 05:01

Super Preview 02:41

Super Constructor Preview 07:08

Override & Abstract Preview 09:13

Mixins Preview 04:49

Final vs Const Preview 05:53

Enum Preview 07:32

Generic Preview 05:23

Math Library Preview 06:10

DateTime Preview 07:31

Operator Overloading Preview 09:39

Polymorphism Preview 08:29

Lexical Closure Preview 06:20

Callable Class Preview 02:26

Extension Function Preview 04:15