-
Can I render n items on the screen dynamically using something like a Rust Range type? Like:
Or I always need to construct a |
Beta Was this translation helpful? Give feedback.
Answered by
ogoffart
Apr 13, 2025
Replies: 1 comment
-
maybe not the most intuitive, but you can use a int as a model in property <int> n: 42;
for index in n: Component {} |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
burumdev
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
maybe not the most intuitive, but you can use a int as a model