Evan Almloff

Results 216 issues of Evan Almloff

Allows templates to be created to skip diffing on static parts of the html. The templates can be changed when the program is running to allow for hot reloading. The...

enhancement
core
breaking

currently this fails to compile: ```rust let x = 0; rsx!{ "{x} {x}" } ``` This is because the format_args_f macro transforms it into ... format_args!("{x} {x}", x = x...

Add widgets to the tui renderer, and a general purpose cursor struct for any renderers. Todo: - [x] Textbox - - [x] Basic Keyboard Editing - Insert Mode - -...

enhancement
tui

- [ ] implement in rsx macro - [ ] update docs #530

## Specific Demand There is currently no way to optionally add a attribute within the rsx macro. This is needed to complete #394. ## Implement Suggestion - React only adds...

enhancement

**Problem** You can read an out of date value from a memo if you update a dependency and then immediately read the memo **Steps To Reproduce** 1) Create a memo...

bug
signals

Adds a WASI plugin to the CLI that will allow users to write plugins in Rust (instead of the Lua plugin system added in https://github.com/DioxusLabs/dioxus/pull/1672)

enhancement
cli

## Specific Demand Dx now optimizes images including avif images. Dx supports avif images because it is the most well supported small format that browsers support. To encode avif images,...

enhancement
cli

**Problem** If you use an absolute path on dioxus desktop on windows, it will be blocked by the webview and the asset will not resolve. **Steps To Reproduce** Steps to...

bug
desktop
consistency

## Specific Demand It would be nice to not have to pass `--hot-reload` every time you run an application with the dioxus CLI. ## Implement Suggestion Now that hot reloading...

enhancement
cli
tweak