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.
Rikulo で UI を宣言的に作成するために Builder パターンを使用することに興味があります。そうする方法はありますか?Dart 構文は同様のメカニズムをサポートしていますか?
例えば、
div( label(value:"OK") );
はい、可能です。まず、div、label、およびその他の ui オブジェクトのグローバル関数を定義する必要があります。例えば、
TextView textView([String text, String html]) => html != null ? new TextView.html(html): new TextView(text);
優れたアドオンになる可能性があります。