Sub6Resources / flutter_html

A Flutter widget for rendering static html as Flutter widgets (Will render over 80 different html tags!)
https://pub.dev/packages/flutter_html
MIT License
1.8k stars 876 forks source link

fit: make a href style overridable #1431

Open EArminjon opened 4 months ago

EArminjon commented 4 months ago

This PR make a tag style be overrided.

  "a": Style.fromTextStyle(
          const TextStyle(
            color: Colors.black,
            fontWeight: FontWeight.bold,
            decoration: TextDecoration.underline,
            decorationThickness: 4,
            decorationColor: Color(0xFFFCFC03),
          ),
        ),

Before : image

After : image