pandarrr
pandarrr
In case someone is having trouble, this is my setup to run pack in Jenkins. ```groovy pipeline { agent { docker { image '' args '--name ${BUILD_TAG}' } } stages...
Didn't see it documented, but looking at the macro it seems `route` does allow an optional second argument for the component. https://github.com/DioxusLabs/dioxus/blob/4f74ef81d1225829d92440bd7da6861045a4738a/packages/router-macro/src/route.rs#L33-L36 I'm afk, but it seems like `#[route("/", Home)]`...
Nvm, it is documented in the router macro crate. https://docs.rs/dioxus-router-macro/latest/dioxus_router_macro/derive.Routable.html Visibility could be better that's true.
Yeah, but given it already exists for redirects it doesn't seem like a stretch to add it for normal routes too. If the team wants it I could give it...
Doesn't seem to work by default. I worked around it by using a regular proc macro (could just use macro_rules for simple cases) that expands to an expression with the...
Seems like it would not be hard to extend the props macro to recognize Signal/ReadOnlySignal and adjust the default accordingly. Something sort of similar is done for [optionals](https://github.com/DioxusLabs/dioxus/blob/bdf87aadc748c7531041b1f89166ebd64d7c8c26/packages/core-macro/src/props/mod.rs#L230). If this...
Interesting. I think there may be a bug related to defaults for ReadOnlySignal and Callback types then. When using the builder functions the value is owned but the child props,...
I opened a PR for this. Because it's only building off the existing behavior of when a prop's builder method is called, it only applies to ReadOnlySignal and Callback types....
It might be a bit hack but I've used [macro_magic](https://docs.rs/macro_magic/latest/macro_magic/index.html) for this type of thing. There's an example for merging structs. It's not the same as you've described because it...
I had a similar issue with Jellyfin until I installed the cert. [Looks](https://github.com/jellyfin/jellyfin-android/blob/master/app/src/main/res/xml/network_security_config.xml) like they have specific config to trust user certs as they are not by default. Might be...