Skip to content

codemaker2015/Dart-Cheatsheet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dart cheat sheet

This project starts from Hello World until the end of the Dart :)

Online compiler : dartpad

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 = "Vishnu Sivan";
    int age = 27;
    double height = 1.5;
    bool male = true;

    var field = "Programming";
    final grade = "A";
    const home = "Kerala";

    dynamic food = "Rice";
    food = "Egg";
}

Cheat sheet download

flutter-cheat-sheet-1.png flutter-cheat-sheet-2.png flutter-cheat-sheet-3.png flutter-cheat-sheet-4.png flutter-cheat-sheet-5.png

About

Dart cheatsheet for beginners

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

close