Flutter -如何为最终用户获取带有HTML标记的文本字段作为输入

kqhtkvqz  于 2022-12-05  发布在  Flutter
关注(0)|答案(1)|浏览(155)

我有一个Flutter移动的应用程序,用户可以在其中的文本字段插入他们的数据。我想给予用户的可能性,使用HTML标签组成他们的“酷”的描述(粗体文本,斜体等)。
我可以为用户做这样的事情吗?(见附图)

nbnkbykc

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(
);

相关问题