我对使用Builder模式以Rikulo声明性地创建UI感兴趣。有办法吗? Dart语法是否支持类似的机制?
例如,
div(
label(value:"OK")
);
答案 0 :(得分:1)
是的,有可能。首先,您必须为div,label和其他ui对象定义全局函数。例如,
TextView textView([String text, String html])
=> html != null ? new TextView.html(html): new TextView(text);
这可能是一个很好的插件。