2dc6cecf2e
Fix #2043: use formvalue instead of String for forms |
||
---|---|---|
.. | ||
assets | ||
mobile_demo | ||
openid_connect_demo | ||
PWA-example | ||
tailwind | ||
all_events.rs | ||
backgrounded_futures.rs | ||
calculator.rs | ||
calculator_mutable.rs | ||
clock.rs | ||
control_focus.rs | ||
counters.rs | ||
crm.rs | ||
custom_assets.rs | ||
custom_html.rs | ||
disabled.rs | ||
dog_app.rs | ||
dynamic_asset.rs | ||
error_handle.rs | ||
eval.rs | ||
file_explorer.rs | ||
file_upload.rs | ||
flat_router.rs | ||
form.rs | ||
future.rs | ||
generic_component.rs | ||
global.rs | ||
hello_world.rs | ||
hydration.rs | ||
image_generator_openai.rs | ||
link.rs | ||
login_form.rs | ||
memo_chain.rs | ||
multiwindow.rs | ||
nested_listeners.rs | ||
optional_props.rs | ||
overlay.rs | ||
popup.rs | ||
query_segments.rs | ||
read_size.rs | ||
README.md | ||
readme.rs | ||
reducer.rs | ||
router.rs | ||
rsx_usage.rs | ||
scroll_to_top.rs | ||
shortcut.rs | ||
shorthand.rs | ||
signals.rs | ||
simple_list.rs | ||
simple_router.rs | ||
spread.rs | ||
ssr.rs | ||
streams.rs | ||
suspense.rs | ||
svg.rs | ||
todomvc.rs | ||
video_stream.rs | ||
weather_app.rs | ||
web_component.rs | ||
window_event.rs | ||
window_focus.rs | ||
window_zoom.rs | ||
xss_safety.rs |
Examples
These examples are fully-fledged mini Dioxus apps.
You can run them with cargo run --example EXAMPLE_NAME
. Example:
cargo run --example hello_world
(Most of these examples are run through webview, so you don't need the Dioxus CLI installed)
Basic Features
hello_world - Most basic example
readme - Counter example from the Readme
custom_assets - Include images
custom_html - Customize wrapper HTML
eval - Evaluate JS expressions
RSX
rsx_usage - Demo of all RSX features
xss_safety - You can include text without worrying about injections by default
Props
optional_props - Optional props
CSS
tailwind - You can use a library for styling
Input Handling
all_events - Basic event handling demo
filedragdrop - Handle dropped files
form - Handle form submission
inputs - Input values
nested_listeners - Nested handlers and bubbling
textarea - Text area input
State Management
Async
login_form - Login endpoint example
suspense - Render placeholders while data is loading
tasks - Continuously run future
SVG
Server-side rendering
ssr - Rendering RSX server-side
hydration - Pre-rendering with hydration
Common Patterns
disabled - Disable buttons conditionally
error_handle - Handle errors with early return
Routing
flat_router - Basic, flat route example
router - Router example
link - Internal, external and custom links
Platform Features
window_event - Window decorations, fullscreen, minimization, etc.
window_zoom – Zoom in or out
Example Apps
calculator - Simple calculator
crm - Toy multi-page customer management app
dog_app - Accesses dog API
file_explorer - File browser that uses use_ref
to interact with the model
todomvc - Todo task list example
TODO
Missing Features
- Fine-grained reactivity
- Refs - imperative handles to elements
- Function-driven children: Pass functions to make VNodes
Missing examples
- Shared state
- Root-less element groups
- Custom elements
- Component Children: Pass children into child components
- Render To string: Render a mounted virtualdom to a string
- Testing and Debugging