DART COOKBOOK

  1. Quickstart

  2. Write Dart Code

  3. Using Librairies

  4. Using Tools

  5. AngularDart + Demo

1- QUICKSTART

  • What is Dart ?

      • Appeared in 2011 / Current Release 1.5.3

      • V8 engineers are working on the Dart project

      • Object-Oriented language ( Classes , Inheritance ...)

      • Supports types, without requiring them.

      • Supports code sharing ( Pub ... ) 

      • is Open Source  https://code.google.com/p/dart/

1- QUICKSTART

  • What is Dart ?

2- Write DART CODE

  • Basic Code

// Define a function.
printAge(num age) {
  print('Mycc age is $age.'); // Print to the console.
}

// This is where the app starts executing.
main() {
  var age = 28;    // Declare and initialize a variable.
  printAge(age);   // Call a function.
}

2- Write DART CODE

  • Live Coding To Learn ...

      • step0 : Hello World
      • step1  : Classes and untyped variables

Title

Dart

By Boris-Wilfried Nyasse