GitHub's documentation has caught up with the provided features and became a lot better: https://docs.github.com/en/actions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'dart:ui'; | |
import 'package:black_hole_flutter/black_hole_flutter.dart'; | |
import 'package:dartx/dartx.dart'; | |
import 'package:flutter/material.dart'; | |
import 'package:flutter/rendering.dart'; | |
class EventContent extends MultiChildRenderObjectWidget { | |
EventContent({ | |
@required Widget title, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fun main() { | |
val john = Student(age = 18, name = "John Doe") | |
john.age = john.age + 1 | |
println("${john.name}, ${john.age}, ${john.age.ageGroup}") | |
val card = StudentCard(123, john) | |
println("$john, $card") | |
val students = List(5) { index -> Student("Student", index) } | |
.map { StudentCard(it.age, it) } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fun main() { | |
val john: Student = Student("John Doe", 19) | |
println(john.getName() + ", " + john.getAge()) | |
} | |
/** | |
* _This_ `class` represents a __single__ [Student]. | |
*/ | |
class Student { | |
private val name: String |