znjameswu / flutter_math

Math rendering and editing in pure Flutter.
https://znjameswu.github.io/flutter_math_demo/
Apache License 2.0
125 stars 51 forks source link

Divider line isn't changing color along with the text. #1

Closed RaulMarquezInclan closed 4 years ago

RaulMarquezInclan commented 4 years ago

Hi,

The divider line isn't changing color along with the text, it always displays black.

Code:

  final String content = r'\left \| \overrightarrow{F}\right \|= K \frac{\left | Q_1\cdot Q_2 \right |}{d^2}';

  var math = FlutterMath.fromTexString(content,
      settings: Settings(
        colorIsTextColor: true,
      ),
      options: Options.displayOptions.withColor(Colors.orange));

Output: image

Thanks for the plugin, awesome work.

znjameswu commented 4 years ago

Thanks for the comment. I'm working on a fix.

znjameswu commented 4 years ago

This issue is fixed in version 0.1.4

RaulMarquezInclan commented 4 years ago

Awesome! Thanks again.