Skip to content

Instantly share code, notes, and snippets.

View mehrdadf7's full-sized avatar
🏠
Working from home

mehrdadf7 mehrdadf7

🏠
Working from home
View GitHub Profile
@mehrdadf7
mehrdadf7 / text_styles.dart
Last active March 28, 2022 08:07
Text styles in the flutter
extension TextExtension on TextStyle {
TextStyle white([double opacity = 1.0]) => copyWith(
color: ColorName.white.withOpacity(opacity),
);
// ANOTHER TEXT COLORS ...
TextStyle customColor(Color color, [double opacity = 1.0]) => copyWith(
color: color.withOpacity(opacity),
);