Learn Dart with this cheat sheet

  Dart, Education

This project starts from Hello World untill the end of the Dart ðŸ™‚

Simple example

  • Hello World in Dart
void main() {
    // Just print it!
    print("Hello World");
}
  • Variables in Dart
enum Os { BigSur, Mojave, Sierra, Catalina }

void main() {
    String name = "Amir";
    int age = 18;
    double height = 1.6;
    bool male = true;

    var field = "Programming";
    final grade = "Collage";
    const home = "NewYork";

    dynamic food = "Pasta";
    food = "Egg";
}

Contribute

You can contribute on this project by adding new stuffediting and other things.

Contribute and download source code on GitHub

https://github.com/Dartians/Dart-Cheatsheet