我正在使用此library来制作对话框。我想在对话框中设置自己的HTML。我想从模板中做到这一点。我做到了:
TemplateElement templateElement = new TemplateElement()
..appendHtml('Hello [username]')
..setAttribute('username', 'USER');
然后:
Dialog dialog = new Dialog(
[templateElement],
"Sample title", true,
'Cancel', 'Ок');
在页面上的html中有这个:
<template username="USER">
Hello [username]
</template>
所以我需要将TemplateElement转换为HtmlElement。我不明白,我怎么能这样做。