我正在尝试使用此代码配置html命令:
String mytxt = '';
mytxt = Html(data: """<b>WARNING<b>\nVery important information!"""); // error in this line
Toast.LENGTH_LONG);
Fluttertoast.showToast(msg: mytxt,
toastLength: Toast.LENGTH_LONG,
gravity: ToastGravity.CENTER,
timeInSecForIos: 3,
backgroundColor: Colors.orange,
textColor: Colors.black,);
请提供任何提示?
谢谢丹尼尔
您可以使用html5lib库。
import 'package:html5lib/parser.dart' show parse;
parse('<b>WARNING<b>\nVery important information!');