dioxus icon indicating copy to clipboard operation
dioxus copied to clipboard

Fullstack app framework for web, desktop, and mobile.

Results 1066 dioxus issues
Sort by recently updated
recently updated
newest added

A few months ago I started rewriting the router (as mentioned on Discord), to make it have an API that feels more "rusty". This is the result of that work....

Fixes #525: wrong example provided in the "Stopping propagation" section.

**Problem** In the event listener chapter (nightly), when describing how to [stop propagation](https://dioxuslabs.com/nightly/guide/interactivity/event_handlers.html#stopping-propagation), the example doesn't show how to stop propagation. It is identical to the previous example. **Steps To...

documentation

## Specific Demand I'm trying to implement infinite scroll for a page. As part of that, I want to trigger loading more elements when the bottom X elements are visible....

enhancement

## Specific Demand In order to implement an infinite scroll, I need to know when the bottom X elements in a list are in view so I can start loading...

enhancement

I want to implement the system tray function for my desktop app,but I cant find any related API in dioxus.

enhancement

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

i tried to display mp4 file , windows, mac ok but linux, not working installed all codec, in linux ( ubuntu ) would it be possible to support mp4 or...

`DesktopConfig.with_event_handler` sets the `event_handler` field, but that isn't used anywhere: ``` > grep -r 'event_handler' packages/desktop/ packages/desktop/src/cfg.rs: pub(crate) event_handler: Option, packages/desktop/src/cfg.rs: event_handler: None, packages/desktop/src/cfg.rs: pub fn with_event_handler( packages/desktop/src/cfg.rs: self.event_handler =...

It seems that there was no way, nor workaround to set an active url when doing ssr, so I added a new prop to the router component.