Flutter 如何在不使用flatter_html库的情况下在flatter中加载属性文本

Flutter 如何在不使用flatter_html库的情况下在flatter中加载属性文本,flutter,flutter-layout,flutter-dependencies,flutter-html,Flutter,Flutter Layout,Flutter Dependencies,Flutter Html,我正在开发一个颤振应用程序,需要为应用程序中的属性文本提供支持 <ul><li>&nbsp;courses are online.</li><br><li>The online 24/7 and study at your own pace.</li><br><li>&nbsp;From date of registration to complete each program.<

我正在开发一个颤振应用程序,需要为应用程序中的属性文本提供支持

<ul><li>&nbsp;courses are online.</li><br><li>The online 24/7 and study at your own pace.</li><br><li>&nbsp;From date of registration to complete each program.</li><br><li>&nbsp;Complete your final exam at any time without any additional charges.</li><br><li>&nbsp;Course have minimum passing score of 40% provided feedback on failed exams.</li>
我已经使用
flatter\uhtml
库实现了,但是现在我与其他lib的版本控制产生了冲突,这往往会产生无限的冲突。那么,有没有其他方法来支持这些属性化字符串而不使用
flatter\uhtml

请将下面的字符串看作是来自服务器端的属性字符串,我需要在我的应用程序中提供支持。

<ul><li>&nbsp;courses are online.</li><br><li>The online 24/7 and study at your own pace.</li><br><li>&nbsp;From date of registration to complete each program.</li><br><li>&nbsp;Complete your final exam at any time without any additional charges.</li><br><li>&nbsp;Course have minimum passing score of 40% provided feedback on failed exams.</li>
  • 课程在线。

  • 全天候在线学习,按照自己的进度学习。

  • 从注册之日起完成每个课程。

  • 随时完成期末考试,不收取任何额外费用。

  • 课程的最低通过分数为40%,并提供考试失败的反馈
请告诉我是否有任何其他解决方案可以在不使用
flatter_html
或创建自己的自定义文本渲染器的情况下,在flatter中使用诸如TextSize、FontFamily和TextColor等样式渲染此字符串。

软件包解决了您的问题吗?