Phillip Baird

Results 4 comments of Phillip Baird

More info... The docs example contains an error. The query parameters are being returned in searchParams not searchParams.query. Passing searchParams as the key fixes the initial page load but subsequent...

Would Vec.retain() be a simpler way to implement delete_todo?

It looks like the bump to winit on 25th October is where the problem starts. [cf4c09e](https://github.com/lapce/floem/commit/cf4c09ecd39748ea660f3915f63a5de5b5ee9d72) - is the last commit that works for me [d7a9356](https://github.com/lapce/floem/commit/d7a9356389a2b6dec779bdac062a513ed482f6ed) - bumps winit -...

Have discovered the problem can be worked around by supplying a WindowConfig with a custom window size. ```rust fn main() { let window_config = WindowConfig::default().size(Size { width: 1920.0, height: 1080.0,...