We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Two options:
Have a different file extension: .ui.template.xml that would get precompiled to .ui.xml by the Generator.
.ui.template.xml
.ui.xml
Have support for this directly in .ui.xml and running the transformation in-memory before parsing the XML.
It could be something like (pseudo Stencil code):
<Component> <array field="rows"> {% for i in 1...5 %} <Label layout:id="row_$i" layout:fillHorizontally="super" {% if :first %}layout:below="id:row_$1"{% else %}layout:top="super"{% endif %} {% if :last %}layout:bottom="super"{% endif %} /> {% endfor %} </array> </Component>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Two options:
Have a different file extension:
.ui.template.xml
that would get precompiled to.ui.xml
by the Generator.Have support for this directly in
.ui.xml
and running the transformation in-memory before parsing the XML.It could be something like (pseudo Stencil code):
The text was updated successfully, but these errors were encountered: