我有一个Flutter移动的应用程序,用户可以在其中的文本字段插入他们的数据。我想给予用户的可能性,使用HTML标签组成他们的“酷”的描述(粗体文本,斜体等)。我可以为用户做这样的事情吗?(见附图)
nbnkbykc1#
html_editor_enhanced: ^2.5.0
检查一下
import 'package:html_editor/html_editor.dart'; HtmlEditorController controller = HtmlEditorController(); @override Widget build(BuildContext context) { return HtmlEditor( controller: controller, htmlEditorOptions: HtmlEditorOptions( hint: "Your text here...", ), otherOptions: OtherOptions( );
1条答案
按热度按时间nbnkbykc1#
检查一下