-
-
Notifications
You must be signed in to change notification settings - Fork 923
Closed
Labels
Description
final html = '<a href="https://www.google.com/"><span>Google</span></a>';
"a": Style(
fontFamily: Theme.of(context).textTheme.bodyText1!.fontFamily,
height: 1.4,
color: Colors.blue
),
"span":Style.fromTextStyle(Theme.of(context).textTheme.bodyText1!.copyWith(
height: 1.4
)
).merge(html ?? Style()),
I have <a> with child <span> , <a> no change to blue, and I cant set "span" to color: Colors.blue , it will overwrite other span color
