LianjiaTech / bruno

An enterprise-class package of Flutter components for mobile applications. ( Bruno 是基于一整套设计体系的 Flutter 组件库。)
https://bruno.ke.com/
MIT License
3.29k stars 493 forks source link

[BUG]提示:_createTextSpan(xmlEvent.value, tag) #519

Open code4life49 opened 10 months ago

code4life49 commented 10 months ago

问题提交

标题格式:[BUG]: flutter项目启动报错

内容需包含:

if (xmlEvent is xml.XmlTextEvent) { _Tag tag = _Tag(); tag.style = style.copyWith(); if (stack.isNotEmpty) { tag = stack.last; } TextSpan textSpan = _createTextSpan(xmlEvent.value, tag); spans.add(textSpan); }

源码这一段有错,XmlTextEvent这个类中,属性明明是text,但是却引用了xmlEvent.value,所以导致异常,本人项目自己改成xmlEvent.text以后就正常了。

zhoujuanjuan commented 8 months ago

你好,请参照模版补充 flutter sdk 版本等相关信息,以便我们排查