Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对使用 Builder 模式使用 Rikulo 以声明方式创建 UI 很感兴趣。有没有办法这样做?Dart 语法是否支持类似的机制?
例如,
div( label(value:"OK") );
是的,有可能。首先,您必须为 div、label 和其他 ui 对象定义全局函数。例如,
TextView textView([String text, String html]) => html != null ? new TextView.html(html): new TextView(text);
它可能是一个很好的插件。