Chinedu Francis Nwafili

Results 269 comments of Chinedu Francis Nwafili

This is similar to https://github.com/chinedufn/percy/issues/106#issuecomment-474647127 where the parser currently assumes that all attributes are composed of a single identifier. Note the single `input.parse()` here. https://github.com/chinedufn/percy/blob/344e757206de0c2c134b79ed596676489290ca93/crates/html-macro/src/tag.rs#L143 --- The solution is peeking...

Heads up I plan to address this issue over the weekend! Hang tight, sorry!

What is `Subscription`? Can you show me the definition for that? --- In terms of requestAnimationFrame, I can update the example to show how to do it. I'd like to...

I was actually planning to remove support for `` syntax. I'm trying to, as much as possible, only have one way to do things. And only in cases where it's...

Definitely keeping the `View` trait, so structs as components are here to stay. As for the shorthand syntax.. Ok let's continue to support it for now. I'm not so sure...

Thanks so much for opening this issue! A big goal of the tools in the Percy family is to be useful to people who want to just use one or...

Yeah it should boil down to just that - but if it doesn't just let me know! And no worries if you don't end up having time - I have...

@bkase looks about right. There's a performance "penalty" for the heap allocation - but I can't see this being a material issue in any reasonable situation when working in the...

Also apologies for the delays in this thread .. I typically try to respond more quickly.. sorry and feel free to keep any questions coming! Looking smooth!

From a quick glance it looks like `into_iter` might be the problem since [into_iter consumes self](https://doc.rust-lang.org/std/iter/trait.IntoIterator.html#tymethod.into_iter) (and thus moves). I would try using `iter` instead of `into_iter` in both of...