Skip to content

Instantly share code, notes, and snippets.

View KristofKekesi's full-sized avatar
🐵
Monke

Kristóf Kékesi KristofKekesi

🐵
Monke
View GitHub Profile
// TURTLE - TEKI
// (°-°) _______
// \ / - - - \_
// \_ ___ ___>
// \__) \__)
@KristofKekesi
KristofKekesi / capitalize.dart
Created December 19, 2021 12:31
Capitalize string with an extension.
extension StringExtension on String {
String capitalize() {
return "${this[0].toUpperCase()}${this.substring(1)}";
}
}
@KristofKekesi
KristofKekesi / copyWith.dart
Created December 18, 2021 23:58
How to redefine a class' final property.
TextStyle sample = const TextStyle(color: Colors.red);
TextStyle sample = sample.copyWith(color: Colors.blue);