-
-
Notifications
You must be signed in to change notification settings - Fork 923
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
Similarly to my last comment here: #1357
I think I've found a regression in regard to text decoration
After upgrading from alpha6 to beta2 it's not possible to change text decoration color anymore
alpha6:
'a': Style.fromTextStyle(
const TextStyle(
color: AppColors.link,
decorationColor: AppColors.link,
decoration: TextDecoration.underline,
),
),
beta2, code unchanged but also tried using style directly, same result:
'a': Style(
color: AppColors.link,
textDecorationColor: AppColors.link,
textDecoration: TextDecoration.underline,
),
❯ flutter --version
Flutter 3.13.0 • channel stable • https://github.com/flutter/flutter.git
Framework • revision efbf63d9c6 (2 days ago) • 2023-08-15 21:05:06 -0500
Engine • revision 1ac611c64e
Tools • Dart 3.1.0 • DevTools 2.25.0
cyclotron3k, RemiDormoy, deandreamatias-worldline and misaalturakhia
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working
Projects
Status
Done