我正在尝试在textspans中创建注释,但是我发现很难。到目前为止,我在RichText中为Textspans使用了常规的高亮显示,效果很好。就像
TextSpan(background: paint, text: 'word', style: TextStyle(color: Colors.black, fontSize: 20));
Paint paint = Paint()
..color = Color.fromRGBO(94, 150, 149, 1)
..style = PaintingStyle.fill
..strokeJoin = StrokeJoin.round
..strokeCap = StrokeCap.round;
但是我认为,如果具有更专业的外观,例如Spacy,Lighttag或Docanno注释可视化,那可能会很棒。那么如何在Flutter中实现类似的目的?