Evan Almloff
Evan Almloff
What is the advantage of different default optimizations for folders vs files? I would expect these two to point to the same asset: ```rust const FOLDER: ASSET = asset!("/myfolder"); const...
> The hasher test failed and I believe it was because the `AssetOptions` enum was changed (which is used to calculate the hash). I set the new left to equal...
`cfg` is a builtin macro, so we can't modify the behavior, but we do already support conditionally compiling blocks of code based on each dioxus platform with [these macros](https://docs.rs/dioxus-config-macro/0.6.2/dioxus_config_macro/) in...
Calling `use_context` multiple times when running a component shouldn't cause an issue. Components are supposed to rerun when they need to rerender. Can you provide more details about the issue...
I see two main use cases for #1177: 1) Renderers like `dioxus-tui` need to traverse the virtual dom and don't care about caching too much 2) Components like `head::Title` need...
In dioxus 0.6, tailwind should be included in a `document::Stylesheet` component as described in the [guide](https://dioxuslabs.com/learn/0.6/cookbook/tailwind): ```rust use dioxus::prelude::*; #[component] fn app() -> Element { rsx! { // The Stylesheet...
> To me it seems like the template being distributed for tailwindcss is not correct, based on how my template was generated and the current templates repo: https://github.com/DioxusLabs/dioxus-template/blob/fb0a78ee345ff4a33f2ca0ec29bddbbbe458d301/Bare-Bones/src/main.rs#L27 The template...
I would consider this out of scope for Dioxus fullstack (at least for the next few years) because it is both very web specific and qwik's implementation of resumability requires...
The only difference is `use_context` is a hook and must be called with [the rules of hooks](https://docs.rs/dioxus/latest/dioxus/prelude/fn.use_context.html#additional-information-that-may-be-useful). `consume_context` can be called from anywhere inside the dioxus runtime
Thanks for working on this! It looks like some unrelated changes to base path leaked into this PR. The two main fields that need documentation are the input and output...