Dart Fundamentals- Course

January 1, 0001

Related


TABLE file.cday as Created, file.mday as Modified
where contains(file.outlinks, this.file.link)
SORT file.mday DESC

Basics

About Dart

https://www.youtube.com/watch?v=6n0NVbngVT8

Flutter is a great platform, Before doing flutter you should learn dart. dart.dev overview try dart - dartpad

Expressions & Variables

https://www.youtube.com/watch?v=NB93Y9KqDP4

Programming Basics main method expression is a line of instruction (sentences & paragraphs, expressions and code blocks) creating an printing variables intro to data types - strings and numbers

Functions in Dart

What is a method method signatures void vs return Input arguments

https://www.youtube.com/watch?v=5xlVP04905w

0:00 - Introduction 1:57 - Environment overview 2:53 - What is programming?

4:42 - Print Statements 2:57:26 - Comments

7:27 - Program execution flow

Variables 12:56 - Variables 24:30 - Data Types 31:38 - String Basics 42:50 - Numbers - ints & doubles 52:30 - Booleans

54:11 - Getting user input 59:29 - Building a basic calculator 1:07:07 - Building a madlib game

1:12:24 - Lists

Functions 1:21:49 - Functions 1:29:31 - Parameters & Arguments 1:35:43 - Return Statements

1:41:12 - Building a prompt function

Flow Control 1:46:50 - If Statements 1:58:45 - And & Or operators 2:03:54 - Else If 2:10:46 - Building a smarter calculator

2:21:10 - Switch Statements 2:27:16 - While Loops 2:43:08 - For Loops 2:34:33 - Building a guessing game

Classes 3:01:54 - Classes & Objects 3:13:13 - Constructors 3:22:37 - Class Methods

3:28:20 - Final Project - Building a math quiz

Notes

Before developing Flutter

Dart vs flutter

Dart.dev site

Pub.dev Dart pad.dev Primitives operators expressions Strings - literals

Methods

  • Outputs
  • Inputs

Fat arrow Flow control Classes Async