一個很好用的flutter富文本庫。
富文本是很多App都需要的,而且Flutter也提供了富文本功能,但是對於做多語言的APP來說,RichText並不好用,或者說不能用,
今天就給大家推薦一個第三方庫 rich_text_widget
主要代碼:
RichTextWidget( // default Text Text( 'You have pushed the button this many times:', style: TextStyle(color: Colors.black), ), // rich text list richTexts: [ BaseRichText( "pushed", style: TextStyle(color: Colors.yellow), onTap: () => {print("touch pushed")}, ), BaseRichText( "button", style: TextStyle(color: Colors.red), onTap: () => {print("touch button")}, ), ], )
實現效果:

