We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents df53f43 + 6888b0a commit 4d75e7cCopy full SHA for 4d75e7c
lib/style.dart
@@ -307,6 +307,9 @@ class Style {
307
listStyleType: child.listStyleType ?? listStyleType,
308
listStylePosition: child.listStylePosition ?? listStylePosition,
309
textAlign: child.textAlign ?? textAlign,
310
+ textDecoration: TextDecoration.combine(
311
+ [child.textDecoration ?? TextDecoration.none,
312
+ textDecoration ?? TextDecoration.none]),
313
textShadow: child.textShadow ?? textShadow,
314
whiteSpace: child.whiteSpace ?? whiteSpace,
315
wordSpacing: child.wordSpacing ?? wordSpacing,
0 commit comments