viridia / quill_v1

Reactive UI framework for Bevy game engine
MIT License
60 stars 7 forks source link

Add macros for ViewTuple and StyleTuple. #12

Closed viridia closed 9 months ago

viridia commented 9 months ago

ViewTuple and StyleTuple allow for a varargs-style of passing of a variable number of arguments. However, they are currently manually implemented for up to 4 arguments, because it's easier during development to hack on code that hasn't been converted into Rust macros.

Now that these are fairly stable, we should convert the 1..N trait implementations into macros.