Dart & Flutter Flashcards
embed variable in string in D
‘«string» $«variable» «string»’
statement in D
«statement»;
» always with semicolon
entry point of D app
void main() { ... }
» main function
embed expression in string in D
‘«string» ${«expression»} «string»’
multiline string in D
’’‘«multi line
string»’’’
””“«multi line
string»”””
raw string in D
r’«raw string»’
» no special character treatment
types in D
» void » null » dynamic » bool » int » double » String » List (like Array in JS) » Set (like unordered Array) » Map (like Object in JS)
comment in D
// «single line comment»
/* «multi line comment» */
/// «single line documentation comment»
/** «multi line documentation comment» **/
declare variable in D
var «name»;
» reassignable
final «name»;
» runtime constant
» mutable
» not reassignable
const «name»; » compile time constant » not mutable » not reassignable » freezes data structures like Map and List
declare class with fields in D (f.ex. person)
class Person { String firstName, lastName, fullName; int age = 0; }
shuffle order of list in D
«list».shuffle();
filter elements of list in D
«list».where((«element») => «check»);
add element to list in D
«list».add(«element»);
get part of list in D
«list».sublist(«start», «_end before»);
» returns a list object
» returns rest of original list if «_end before» is omitted
remove specific elements from list in D
«list».removeWhere((«element») => «check»);
import third party package in D
import ‘package:«package name»/«file name».dart’;
import standard library in D
import ‘dart:«package name»’;
import local file in D
import ‘«path»’;
parse JSON in D
import ‘dart:convert’;
var «parsed json» = json.decode(«raw json»);
access map values in D
«map»[«key»]
import specific element of package in D
import «package» show «element»;
create custom stateless widget in F
import ‘package:flutter/material.dart’;
class «name» extends StatelessWidget {
…
}
create custom stateful widget in F
import ‘package:flutter/material.dart’;
class «name» extends StatefulWidget {
…
}
show image from an URL in F
Image.network(«url»)
set padding/margin widget in F
EdgeInsets
.only(_left: «val», _top: «val», _right: «val», _bottom: «val»)
.symmetric(_vertical: «val», _horizontal: «val»)
.fromLTRB(«val», «val», «val», «val»)
.all(«val»)
//.fromWindowPadding(«padding», «devicePixelRatio value»)
» val: double
set border widget in F
Border(_top: «bs», _right: «bs», _bottom: «bs», _left: «bs»)
Border.symmetric(_vertical: «bs», _horizontal: «bs»)
Border.fromBorderSide(«bs»)
Border.all(_color: «color», _width: «width», _style: BorderStyle.«style»)
» bs: BorderSide
» style: solid or none
set color widget by color code in F
Color(0̸xAARRGGBB)
Color.fromARGB(«alpha», «red», «green», «blue»)
Color.fromRGBO(«red», «green», «blue», «opacity»)
» 0̸x value must be 8 digits
» opacity: double
use mixin in D
import ‘«path to mixin»’;
class «name» extends «class» with «mixin» {
…
}
» mixin: another _abstract class
declare abstract class in D (like interface in TS)
abstract class «name» { «_field»... «_constructor»... «_method»... «_abstract method»(«_type» «_prop»); }
» cannot be instantiated
» abstract methods have to be implemented on »extends«
implement class as an interface in D
class «name» implements «class» {
…
}
» inherits types only
set default value for case that variable will be null in D
«variable to check» ?? «default value»
arrow function in D
(«_type» «param», «_type2» «_param2») => {
…
return «value»;
}
» params always in brackets
set border on container widget in F
Container( decoration: BoxDecoration( border: «Border» ), ),
set border side widget in F
BorderSide(_color: «color», _width: «width», _style: BorderStyle.«style»))
» style: solid or none
set border style widget in F
BorderStyle.«style»
» style: solid or none
set color widget by material enum in F
Colors.«color»_[«intensity»]
Colors.«color»Accent[«intensity»]
» color: transparent, red, blue, grey etc.
» intensity: 100-900, default is 500
» accent intensity: 100, 400, 700, default is 200
set color widget to black or white in F
Colors.«black|white»«_opacity»
» black opacity: 12, 26, 38, 45, 54, 87
» white opacity: 10, 12, 24, 30, 38, 54, 60, 70
declare class with constructor in D (f.ex. person)
class Person { String firstName, lastName, fullName;
Person(this.firstName, this.lastName) {
fullName = ‘$firstName $lastName’;
}
}
declare class with named constructor in D (f.ex. person)
class Person { String firstName, lastName, fullName;
Person.dummy() { firstName = 'Bruce'; lastName = 'Wayne'; fullName = '$firstName $lastName'; } }
declare class with method in D (f.ex. person)
class Person { String name;
Person(this.name);
greet(String greeting) {
print(‘$greeting, $name’);
}
}
declare class with getter and setter in D (f.ex. person)
class Person { int birthYear;
int get age => DateTime.now().year - birthYear; set age(int value) => birthYear = DateTime.now() - value; }
inherit from other class in D
class «name» extends «class» {
…
}
» inherits types and implementations
» abstract methods have to be implemented now