repo
stringlengths
6
65
file_url
stringlengths
81
311
file_path
stringlengths
6
227
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 15:31:58
2026-01-04 20:25:31
truncated
bool
2 classes
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/08-apis/logging.rs
examples/08-apis/logging.rs
//! Dioxus ships out-of-the-box with tracing hooks that integrate with the Dioxus-CLI. //! //! The built-in tracing-subscriber automatically sets up a wasm panic hook and wires up output //! to be consumed in a machine-readable format when running under `dx`. //! //! You can disable the built-in tracing-subscriber or c...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/08-apis/ssr.rs
examples/08-apis/ssr.rs
//! Example: SSR //! //! This example shows how we can render the Dioxus Virtualdom using SSR. //! Dioxus' SSR is quite comprehensive and can generate a number of utility markers for things like hydration. //! //! You can also render without any markers to get a clean HTML output. use dioxus::prelude::*; fn main() { ...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/08-apis/control_focus.rs
examples/08-apis/control_focus.rs
//! Managing focus //! //! This example shows how to manage focus in a Dioxus application. We implement a "roulette" that focuses on each input //! in the grid every few milliseconds until the user interacts with the inputs. use std::rc::Rc; use async_std::task::sleep; use dioxus::prelude::*; const STYLE: Asset = as...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/08-apis/scroll_to_top.rs
examples/08-apis/scroll_to_top.rs
//! Scroll elements using their MountedData //! //! Dioxus exposes a few helpful APIs around elements (mimicking the DOM APIs) to allow you to interact with elements //! across the renderers. This includes scrolling, reading dimensions, and more. //! //! In this example we demonstrate how to scroll to the top of the pa...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/08-apis/custom_html.rs
examples/08-apis/custom_html.rs
//! This example shows how to use a custom index.html and custom <HEAD> extensions //! to add things like stylesheets, scripts, and third-party JS libraries. use dioxus::prelude::*; fn main() { dioxus::LaunchBuilder::new() .with_cfg( dioxus::desktop::Config::new().with_custom_index( ...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/08-apis/video_stream.rs
examples/08-apis/video_stream.rs
//! Using `wry`'s http module, we can stream a video file from the local file system. //! //! You could load in any file type, but this example uses a video file. use dioxus::desktop::wry::http; use dioxus::desktop::wry::http::Response; use dioxus::desktop::{AssetRequest, use_asset_handler}; use dioxus::prelude::*; us...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/03-assets-styling/dynamic_assets.rs
examples/03-assets-styling/dynamic_assets.rs
//! This example shows how to load in custom assets with the use_asset_handler hook. //! //! This hook is currently only available on desktop and allows you to intercept any request made by the webview //! and respond with your own data. You could use this to load in custom videos, streams, stylesheets, images, //! or ...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/03-assets-styling/meta_elements.rs
examples/03-assets-styling/meta_elements.rs
//! This example shows how to add metadata to the page with the Meta component use dioxus::prelude::*; fn main() { dioxus::launch(app); } fn app() -> Element { rsx! { // You can use the Meta component to render a meta tag into the head of the page // Meta tags are useful to provide informatio...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/03-assets-styling/css_modules.rs
examples/03-assets-styling/css_modules.rs
//! This example shows how to use css modules with the `css_module` macro. Css modules convert css //! class names to unique names to avoid class name collisions. use dioxus::prelude::*; fn main() { dioxus::launch(app); } fn app() -> Element { // Each `css_module` macro will expand the annotated struct in th...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/03-assets-styling/meta.rs
examples/03-assets-styling/meta.rs
//! This example shows how to add metadata to the page with the Meta component use dioxus::prelude::*; fn main() { dioxus::launch(app); } fn app() -> Element { rsx! { // You can use the Meta component to render a meta tag into the head of the page // Meta tags are useful to provide informatio...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/03-assets-styling/custom_assets.rs
examples/03-assets-styling/custom_assets.rs
//! A simple example on how to use assets loading from the filesystem. //! //! Dioxus provides the asset!() macro which is a convenient way to load assets from the filesystem. //! This ensures the asset makes it into the bundle through dependencies and is accessible in environments //! like web and android where assets...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/04-managing-state/reducer.rs
examples/04-managing-state/reducer.rs
//! Example: Reducer Pattern //! ----------------- //! //! This example shows how to encapsulate state in dioxus components with the reducer pattern. //! This pattern is very useful when a single component can handle many types of input that can //! be represented by an enum. use dioxus::prelude::*; const STYLE: Asse...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/04-managing-state/global.rs
examples/04-managing-state/global.rs
//! Example: Global signals and memos //! //! This example demonstrates how to use global signals and memos to share state across your app. //! Global signals are simply signals that live on the root of your app and are accessible from anywhere. To access a //! global signal, simply use its methods like a regular signa...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/04-managing-state/memo_chain.rs
examples/04-managing-state/memo_chain.rs
//! This example shows how you can chain memos together to create a tree of memoized values. //! //! Memos will also pause when their parent component pauses, so if you have a memo that depends on a signal, and the //! signal pauses, the memo will pause too. use dioxus::prelude::*; fn main() { dioxus::launch(app)...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/04-managing-state/error_handling.rs
examples/04-managing-state/error_handling.rs
//! This example showcases how to use the ErrorBoundary component to handle errors in your app. //! //! The ErrorBoundary component is a special component that can be used to catch panics and other errors that occur. //! By default, Dioxus will catch panics during rendering, async, and handlers, and bubble them up to t...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/04-managing-state/context_api.rs
examples/04-managing-state/context_api.rs
//! Demonstrates cross-component state sharing using Dioxus' Context API //! //! Features: //! - Context provider initialization //! - Nested component consumption //! - Reactive state updates //! - Error handling for missing context //! - Platform-agnostic implementation use dioxus::prelude::*; const STYLE: Asset = ...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/04-managing-state/signals.rs
examples/04-managing-state/signals.rs
//! A simple example demonstrating how to use signals to modify state from several different places. //! //! This simple example implements a counter that can be incremented, decremented, and paused. It also demonstrates //! that background tasks in use_futures can modify the value as well. //! //! Most signals impleme...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/01-app-demos/todomvc_store.rs
examples/01-app-demos/todomvc_store.rs
//! The typical TodoMVC app, implemented in Dioxus with stores. Stores let us //! share nested reactive state between components. They let us keep our todomvc //! state in a single struct without wrapping every type in a signal while still //! maintaining fine grained reactivity. use dioxus::prelude::*; use std::{coll...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/01-app-demos/repo_readme.rs
examples/01-app-demos/repo_readme.rs
//! The example from the readme! //! //! This example demonstrates how to create a simple counter app with dioxus. The `Signal` type wraps inner values, //! making them `Copy`, allowing them to be freely used in closures and async functions. `Signal` also provides //! helper methods like AddAssign, SubAssign, toggle, e...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/01-app-demos/hello_world.rs
examples/01-app-demos/hello_world.rs
//! The simplest example of a Dioxus app. //! //! In this example we: //! - import a number of important items from the prelude (launch, Element, rsx, div, etc.) //! - define a main function that calls the launch function with our app function //! - define an app function that returns a div element with the text "Hello...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/01-app-demos/calculator_mutable.rs
examples/01-app-demos/calculator_mutable.rs
//! This example showcases a simple calculator using an approach to state management where the state is composed of only //! a single signal. Since Dioxus implements traditional React diffing, state can be consolidated into a typical Rust struct //! with methods that take `&mut self`. For many use cases, this is a simp...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/01-app-demos/websocket_chat.rs
examples/01-app-demos/websocket_chat.rs
//! A websocket chat demo using Dioxus' built-in websocket support. //! //! We setup an endpoint at `/api/chat` that accepts a `name` and `user_id` query parameter. //! Each client connects to that endpoint, and we use a `tokio::broadcast` channel //! to send messages to all connected clients. //! //! In practice, you'...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/01-app-demos/weather_app.rs
examples/01-app-demos/weather_app.rs
#![allow(non_snake_case)] use dioxus::{fullstack::Loading, prelude::*}; use serde::{Deserialize, Serialize}; use std::fmt::Display; fn main() { dioxus::launch(app); } fn app() -> Element { let country = use_signal(|| WeatherLocation { name: "Berlin".to_string(), country: "Germany".to_string()...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/01-app-demos/counters.rs
examples/01-app-demos/counters.rs
//! A simple counters example that stores a list of items in a vec and then iterates over them. use dioxus::prelude::*; const STYLE: Asset = asset!("/examples/assets/counter.css"); fn main() { dioxus::launch(app); } fn app() -> Element { // Store the counters in a signal let mut counters = use_signal(||...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/01-app-demos/dog_app.rs
examples/01-app-demos/dog_app.rs
//! This example demonstrates a simple app that fetches a list of dog breeds and displays a random dog. //! //! This app combines `use_loader` and `use_action` to fetch data from the Dog API. //! - `use_loader` automatically fetches the list of dog breeds when the component mounts. //! - `use_action` fetches a random d...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/01-app-demos/image_generator_openai.rs
examples/01-app-demos/image_generator_openai.rs
use dioxus::prelude::*; fn main() { dioxus::launch(app) } fn app() -> Element { let mut api_key = use_signal(|| "".to_string()); let mut prompt = use_signal(|| "".to_string()); let mut num_images = use_signal(|| 1.to_string()); let mut image = use_action(move || async move { #[derive(serd...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/01-app-demos/todomvc.rs
examples/01-app-demos/todomvc.rs
//! The typical TodoMVC app, implemented in Dioxus. use dioxus::prelude::*; use std::collections::HashMap; const STYLE: Asset = asset!("/examples/assets/todomvc.css"); fn main() { dioxus::launch(app); } #[derive(PartialEq, Eq, Clone, Copy)] enum FilterState { All, Active, Completed, } struct TodoIt...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/01-app-demos/crm.rs
examples/01-app-demos/crm.rs
//! Tiny CRM - A simple CRM app using the Router component and global signals //! //! This shows how to use the `Router` component to manage different views in your app. It also shows how to use global //! signals to manage state across the entire app. //! //! We could simply pass the state as a prop to each component,...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/01-app-demos/calculator.rs
examples/01-app-demos/calculator.rs
//! Calculator //! //! This example is a simple iOS-style calculator. Instead of wrapping the state in a single struct like the //! `calculate_mutable` example, this example uses several closures to manage actions with the state. Most //! components will start like this since it's the quickest way to start adding state...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/01-app-demos/bluetooth-scanner/src/main.rs
examples/01-app-demos/bluetooth-scanner/src/main.rs
use dioxus::prelude::*; fn main() { dioxus::launch(app) } fn app() -> Element { let mut scan = use_action(|| async { use btleplug::api::{Central, Manager as _, Peripheral, ScanFilter}; let manager = btleplug::platform::Manager::new().await?; // get the first bluetooth adapter ...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/01-app-demos/ecommerce-site/src/api.rs
examples/01-app-demos/ecommerce-site/src/api.rs
use dioxus::prelude::Result; use serde::{Deserialize, Serialize}; use std::fmt::Display; // Cache up to 100 requests, invalidating them after 60 seconds pub(crate) async fn fetch_product(product_id: usize) -> Result<Product> { Ok( reqwest::get(format!("https://fakestoreapi.com/products/{product_id}")) ...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/01-app-demos/ecommerce-site/src/main.rs
examples/01-app-demos/ecommerce-site/src/main.rs
#![allow(non_snake_case)] use components::home::Home; use components::loading::ChildrenOrLoading; use dioxus::prelude::*; mod components { pub mod error; pub mod home; pub mod loading; pub mod nav; pub mod product_item; pub mod product_page; } mod api; fn main() { dioxus::launch(|| { ...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/01-app-demos/ecommerce-site/src/components/loading.rs
examples/01-app-demos/ecommerce-site/src/components/loading.rs
use dioxus::prelude::*; #[component] pub(crate) fn ChildrenOrLoading(children: Element) -> Element { rsx! { Stylesheet { href: asset!("/public/loading.css") } SuspenseBoundary { fallback: |_| rsx! { div { class: "spinner", } }, {children} } } }
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/01-app-demos/ecommerce-site/src/components/home.rs
examples/01-app-demos/ecommerce-site/src/components/home.rs
// The homepage is statically rendered, so we don't need to a persistent websocket connection. use crate::{ api::{fetch_products, Sort}, components::nav::Nav, components::product_item::ProductItem, }; use dioxus::prelude::*; pub(crate) fn Home() -> Element { let products = use_loader(|| fetch_products...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/01-app-demos/ecommerce-site/src/components/error.rs
examples/01-app-demos/ecommerce-site/src/components/error.rs
use dioxus::prelude::*; #[component] pub fn error_page() -> Element { rsx! { section { class: "py-20", div { class: "container mx-auto px-4", div { class: "flex flex-wrap -mx-4 mb-24 text-center", "An internal error has occurred" } ...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/01-app-demos/ecommerce-site/src/components/nav.rs
examples/01-app-demos/ecommerce-site/src/components/nav.rs
use dioxus::prelude::*; #[component] pub fn Nav() -> Element { rsx! { section { class: "relative", nav { class: "flex justify-between border-b", div { class: "px-12 py-8 flex w-full items-center", a { class: "hidden xl:block mr-16", hr...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/01-app-demos/ecommerce-site/src/components/product_page.rs
examples/01-app-demos/ecommerce-site/src/components/product_page.rs
use std::{fmt::Display, str::FromStr}; use crate::api::{fetch_product, Product}; use dioxus::prelude::*; #[component] pub fn ProductPage(product_id: ReadSignal<usize>) -> Element { let mut quantity = use_signal(|| 1); let mut size = use_signal(Size::default); let product = use_loader(move || fetch_product...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/01-app-demos/ecommerce-site/src/components/product_item.rs
examples/01-app-demos/ecommerce-site/src/components/product_item.rs
use dioxus::prelude::*; use crate::api::Product; #[component] pub(crate) fn ProductItem(product: Product) -> Element { let Product { id, title, price, category, image, rating, .. } = product; rsx! { section { class: "h-40 p-2 m-2 shadow-lg r...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/01-app-demos/hackernews/src/main.rs
examples/01-app-demos/hackernews/src/main.rs
#![allow(non_snake_case, unused)] use dioxus::prelude::*; // Define the Hackernews API and types use chrono::{DateTime, Utc}; use serde::{Deserialize, Serialize}; use std::{ fmt::{Display, Formatter}, num::ParseIntError, str::FromStr, }; use svg_attributes::to; fn main() { LaunchBuilder::new() ...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/01-app-demos/hotdog/src/backend.rs
examples/01-app-demos/hotdog/src/backend.rs
use anyhow::Result; use dioxus::prelude::*; #[cfg(feature = "server")] thread_local! { static DB: std::sync::LazyLock<rusqlite::Connection> = std::sync::LazyLock::new(|| { std::fs::create_dir("hotdogdb").unwrap(); let conn = rusqlite::Connection::open("hotdogdb/hotdog.db").expect("Failed to open da...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/01-app-demos/hotdog/src/main.rs
examples/01-app-demos/hotdog/src/main.rs
mod backend; mod frontend; use dioxus::prelude::*; use frontend::*; #[derive(Routable, PartialEq, Clone)] enum Route { #[layout(NavBar)] #[route("/")] DogView, #[route("/favorites")] Favorites, } fn main() { #[cfg(not(feature = "server"))] dioxus::fullstack::set_server_url("https://hot-d...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/01-app-demos/hotdog/src/frontend.rs
examples/01-app-demos/hotdog/src/frontend.rs
use dioxus::prelude::*; use serde::{Deserialize, Serialize}; use crate::{ backend::{list_dogs, remove_dog, save_dog}, Route, }; #[component] pub fn Favorites() -> Element { let mut favorites = use_loader(list_dogs)?; rsx! { div { id: "favorites", for (id , url) in favorites.cloned...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/01-app-demos/file-explorer/src/main.rs
examples/01-app-demos/file-explorer/src/main.rs
//! Example: File Explorer //! //! This is a fun little desktop application that lets you explore the file system. //! //! This example is interesting because it's mixing filesystem operations and GUI, which is typically hard for UI to do. //! We store the state entirely in a single signal, making the explorer logic fa...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/09-reference/web_component.rs
examples/09-reference/web_component.rs
//! Dioxus allows webcomponents to be created with a simple syntax. //! //! Read more about webcomponents [here](https://developer.mozilla.org/en-US/docs/Web/Web_Components) //! //! We typically suggest wrapping webcomponents in a strongly typed interface using a component. use dioxus::prelude::*; fn main() { dio...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/09-reference/xss_safety.rs
examples/09-reference/xss_safety.rs
//! XSS Safety //! //! This example proves that Dioxus is safe from XSS attacks. use dioxus::prelude::*; fn main() { dioxus::launch(app); } fn app() -> Element { let mut contents = use_signal(|| String::from("<script>alert(\"hello world\")</script>")); rsx! { div { h1 {"Dioxus is XSS...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/09-reference/rsx_usage.rs
examples/09-reference/rsx_usage.rs
//! A tour of the rsx! macro //! ------------------------ //! //! This example serves as an informal quick reference of all the things that the rsx! macro can do. //! //! A full in-depth reference guide is available at: https://www.notion.so/rsx-macro-basics-ef6e367dec124f4784e736d91b0d0b19 //! //! ### Elements //! - C...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/09-reference/generic_component.rs
examples/09-reference/generic_component.rs
//! This example demonstrates how to create a generic component in Dioxus. //! //! Generic components can be useful when you want to create a component that renders differently depending on the type //! of data it receives. In this particular example, we're just using a type that implements `Display` and `PartialEq`, ...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/09-reference/shorthand.rs
examples/09-reference/shorthand.rs
//! Dioxus supports shorthand syntax for creating elements and components. use dioxus::prelude::*; fn main() { dioxus::launch(app); } fn app() -> Element { let a = 123; let b = 456; let c = 789; let class = "class"; let id = "id"; // todo: i'd like it for children on elements to be infer...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/09-reference/simple_list.rs
examples/09-reference/simple_list.rs
//! A few ways of mapping elements into rsx! syntax //! //! Rsx allows anything that's an iterator where the output type implements Into<Element>, so you can use any of the following: use dioxus::prelude::*; fn main() { dioxus::launch(app); } fn app() -> Element { rsx!( div { // Use Map d...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/09-reference/spread.rs
examples/09-reference/spread.rs
//! This example demonstrates how to use the spread operator to pass attributes to child components. //! //! This lets components like the `Link` allow the user to extend the attributes of the underlying `a` tag. //! These attributes are bundled into a `Vec<Attribute>` which can be spread into the child component using...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/09-reference/all_events.rs
examples/09-reference/all_events.rs
//! This example shows how to listen to all events on a div and log them to the console. //! //! The primary demonstration here is the properties on the events themselves, hoping to give you some inspiration //! on adding interactivity to your own application. use dioxus::prelude::*; use std::{collections::VecDeque, f...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/09-reference/optional_props.rs
examples/09-reference/optional_props.rs
//! Optional props //! //! This example demonstrates how to use optional props in your components. The `Button` component has several props, //! and we use a variety of attributes to set them. use dioxus::prelude::*; fn main() { dioxus::launch(app); } fn app() -> Element { rsx! { // We can set some o...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/10-integrations/bevy/src/bevy_scene_plugin.rs
examples/10-integrations/bevy/src/bevy_scene_plugin.rs
use crate::bevy_renderer::UIData; use bevy::prelude::*; #[derive(Component)] pub struct DynamicColoredCube; pub struct BevyScenePlugin {} impl Plugin for BevyScenePlugin { fn build(&self, app: &mut App) { app.insert_resource(ClearColor(bevy::color::Color::srgba(0.0, 0.0, 0.0, 0.0))); app.add_syst...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/10-integrations/bevy/src/bevy_renderer.rs
examples/10-integrations/bevy/src/bevy_renderer.rs
use crate::bevy_scene_plugin::BevyScenePlugin; use bevy::{ camera::{ManualTextureViewHandle, RenderTarget}, prelude::*, render::{ render_resource::TextureFormat, renderer::{ RenderAdapter, RenderAdapterInfo, RenderDevice, RenderInstance, RenderQueue, WgpuWrapper, ...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/10-integrations/bevy/src/main.rs
examples/10-integrations/bevy/src/main.rs
use std::any::Any; use color::{palette::css::WHITE, parse_color}; use color::{OpaqueColor, Srgb}; use demo_renderer::{DemoMessage, DemoPaintSource}; use dioxus_native::prelude::*; use dioxus_native::use_wgpu; use wgpu::Limits; mod bevy_renderer; mod bevy_scene_plugin; mod demo_renderer; // CSS Styles static STYLES: ...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/10-integrations/bevy/src/demo_renderer.rs
examples/10-integrations/bevy/src/demo_renderer.rs
use crate::bevy_renderer::BevyRenderer; use crate::Color; use dioxus_native::{CustomPaintCtx, CustomPaintSource, DeviceHandle, TextureHandle}; use std::sync::mpsc::{channel, Receiver, Sender}; pub enum DemoMessage { // Color in RGB format SetColor(Color), } enum DemoRendererState { Active(Box<BevyRenderer...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/10-integrations/native-headless-in-bevy/src/bevy_scene_plugin.rs
examples/10-integrations/native-headless-in-bevy/src/bevy_scene_plugin.rs
use crate::ui::{UIMessage, UiState}; use bevy::input::mouse::{MouseButton, MouseMotion}; use bevy::prelude::*; use crossbeam_channel::{Receiver, Sender}; #[derive(Component)] pub struct DynamicCube; #[derive(Component)] pub struct OrbitCamera { pub distance: f32, pub yaw: f32, pub pitch: f32, pub sens...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/10-integrations/native-headless-in-bevy/src/dioxus_in_bevy_plugin.rs
examples/10-integrations/native-headless-in-bevy/src/dioxus_in_bevy_plugin.rs
use std::rc::Rc; use std::sync::Arc; use std::time::Instant; use bevy::asset::RenderAssetUsages; use bevy::prelude::*; use bevy::{ input::{ keyboard::{Key as BevyKey, KeyCode as BevyKeyCode, KeyboardInput}, mouse::{MouseButton, MouseButtonInput}, ButtonInput, ButtonState, InputSystems, ...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
true
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/10-integrations/native-headless-in-bevy/src/ui.rs
examples/10-integrations/native-headless-in-bevy/src/ui.rs
use async_std::task::sleep; use crossbeam_channel::{Receiver, Sender}; use dioxus::prelude::*; use paste::paste; macro_rules! define_ui_state { ( $($field:ident : $type:ty = $default:expr),* $(,)? ) => { paste! { #[allow(dead_code)] #[derive(Clone, Copy)] pub struct UiState { ...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/10-integrations/native-headless-in-bevy/src/main.rs
examples/10-integrations/native-headless-in-bevy/src/main.rs
mod bevy_scene_plugin; mod dioxus_in_bevy_plugin; mod ui; use crate::bevy_scene_plugin::BevyScenePlugin; use crate::dioxus_in_bevy_plugin::DioxusInBevyPlugin; use crate::ui::{ui, UIProps}; use bevy::prelude::*; fn main() { #[cfg(feature = "tracing")] tracing_subscriber::fmt::init(); let (ui_sender, ui_re...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/10-integrations/pwa/src/main.rs
examples/10-integrations/pwa/src/main.rs
use dioxus::prelude::*; fn main() { dioxus::launch(app); } fn app() -> Element { rsx! ( div { style: "text-align: center;", h1 { "🌗 Dioxus 🚀" } h3 { "Frontend that scales." } p { "Build web, desktop, and mobile apps with Dioxus" } } ) }
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/10-integrations/wgpu-texture/src/main.rs
examples/10-integrations/wgpu-texture/src/main.rs
use color::{palette::css::WHITE, parse_color}; use color::{OpaqueColor, Srgb}; use demo_renderer::{DemoMessage, DemoPaintSource}; use dioxus::prelude::*; use dioxus_native::use_wgpu; use std::any::Any; use wgpu::{Features, Limits}; use winit::dpi::LogicalSize; use winit::window::WindowAttributes; mod demo_renderer; /...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/10-integrations/wgpu-texture/src/demo_renderer.rs
examples/10-integrations/wgpu-texture/src/demo_renderer.rs
// Copyright © SixtyFPS GmbH <info@slint.dev> // SPDX-License-Identifier: MIT use crate::Color; use dioxus_native::{CustomPaintCtx, CustomPaintSource, DeviceHandle, TextureHandle}; use std::sync::mpsc::{channel, Receiver, Sender}; use std::time::Instant; use wgpu::{ CommandEncoderDescriptor, Device, Extent3d, Fragm...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/10-integrations/native-headless/src/main.rs
examples/10-integrations/native-headless/src/main.rs
//! A "sketch" of how to integrate a Dioxus Native app to into a wider application //! by rendering the UI to a texture and driving it with your own event loop //! //! (this example is not really intended to be run as-is, and requires you to fill //! in the missing pieces) use anyrender_vello::VelloScenePainter; use bl...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/10-integrations/tailwind/src/main.rs
examples/10-integrations/tailwind/src/main.rs
use dioxus::prelude::*; fn main() { dioxus::launch(app); } fn app() -> Element { let grey_background = true; rsx! { Stylesheet { href: asset!("/assets/tailwind.css") } div { header { class: "text-gray-400 body-font", // you can use optional attr...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/07-fullstack/header_map.rs
examples/07-fullstack/header_map.rs
//! This example shows how you can extract a HeaderMap from requests to read custom headers. //! //! The extra arguments in the `#[get(...)]` macro are passed to the underlying axum handler, //! and only visible on the server. This lets you run normal axum extractors like `HeaderMap`, //! `TypedHeader`, `Query`, etc. /...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/07-fullstack/multipart_form.rs
examples/07-fullstack/multipart_form.rs
//! This example showcases how to handle multipart form data uploads in Dioxus. //! //! Dioxus provides the `MultipartFormData` type to allow converting from the websys `FormData` //! type directly into a streaming multipart form data handler. use dioxus::{fullstack::MultipartFormData, prelude::*}; fn main() { di...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/07-fullstack/login_form.rs
examples/07-fullstack/login_form.rs
//! This example demonstrates how to use types like `Form`, `SetHeader`, and `TypedHeader` //! to create a simple login form that sets a cookie in the browser and uses it for authentication //! on a protected endpoint. //! //! For more information on handling forms in general, see the multipart_form example. //! //! Th...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/07-fullstack/server_sent_events.rs
examples/07-fullstack/server_sent_events.rs
//! This example demonstrates server-sent events (SSE) using Dioxus Fullstack. //! //! Server-sent events allow the server to push updates to the client over a single HTTP connection. //! This is useful for real-time updates, notifications, or any scenario where the server needs to //! send data to the client without t...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/07-fullstack/websocket.rs
examples/07-fullstack/websocket.rs
//! This example showcases the built-in websocket functionality in Dioxus Fullstack. //! //! We can create a new websocket endpoint that takes the WebSocketOptions as a body and returns //! a `Websocket` instance that the client uses to communicate with the server. //! //! The `Websocket` type is generic over the messa...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/07-fullstack/streaming_file_upload.rs
examples/07-fullstack/streaming_file_upload.rs
//! This example showcases how to upload files from the client to the server. //! //! We can use the `FileStream` type to handle file uploads in a streaming fashion. //! This allows us to handle large files without loading them entirely into memory. //! //! `FileStream` and `FileDownload` are built on multi-part form d...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/07-fullstack/redirect.rs
examples/07-fullstack/redirect.rs
//! This example shows how to use the axum `Redirect` type to redirect the client to a different URL. //! //! On the web, a redirect will not be handled directly by JS, but instead the browser will automatically //! follow the redirect. This is useful for redirecting to different pages after a form submission. //! //! ...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/07-fullstack/middleware.rs
examples/07-fullstack/middleware.rs
//! This example shows how to use middleware in a fullstack Dioxus app. //! //! Dioxus supports two ways of middleware: //! - Applying layers to the top-level axum router //! - Apply `#[middleware]` attributes to individual handlers use dioxus::prelude::*; #[cfg(feature = "server")] use {std::time::Duration, tower_ht...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/07-fullstack/full_request_access.rs
examples/07-fullstack/full_request_access.rs
//! This example shows how to get access to the full axum request in a handler. //! //! The extra arguments in the `post` macro are passed to the handler function, but not exposed //! to the client. This means we can still call the endpoint from the client, but have full access //! to the request on the server. use di...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/07-fullstack/through_reqwest.rs
examples/07-fullstack/through_reqwest.rs
//! This example demonstrates that dioxus server functions can be be called directly as a Rust //! function or via an HTTP request using reqwest. //! //! Dioxus server functions generated a REST endpoint that can be called using any HTTP client. //! By default, they also support different serialization formats like JSO...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/07-fullstack/custom_axum_serve.rs
examples/07-fullstack/custom_axum_serve.rs
//! This example demonstrates how to use `dioxus::serve` with a custom Axum router. //! //! By default, `dioxus::launch` takes over the main thread and runs the Dioxus application. //! However, if you want to integrate Dioxus into an existing web server or use a custom router, //! you can use `dioxus::serve` to create ...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/07-fullstack/dog_app_self_hosted.rs
examples/07-fullstack/dog_app_self_hosted.rs
//! This example showcases a fullstack variant of the "dog app" demo, but with the loader and actions //! self-hosted instead of using the Dog API. use dioxus::prelude::*; fn main() { dioxus::launch(app); } fn app() -> Element { // Fetch the list of breeds from the Dog API, using the `?` syntax to suspend or...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/07-fullstack/fullstack_hello_world.rs
examples/07-fullstack/fullstack_hello_world.rs
//! A simple example using Dioxus Fullstack to call a server action. //! //! the `get`, `post`, `put`, `delete`, etc macros are used to define server actions that can be //! called from the client. The action can take arguments and return a value, and the client //! will automatically serialize and deserialize the data...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/07-fullstack/query_params.rs
examples/07-fullstack/query_params.rs
//! An example showcasing query parameters in Dioxus Fullstack server functions. //! //! The query parameter syntax mostly follows axum, but with a few extra conveniences. //! - can rename parameters in the function signature with `?age=age_in_years` where `age_in_years` is Rust variable name //! - can absorb all query...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/07-fullstack/server_functions.rs
examples/07-fullstack/server_functions.rs
//! This example is a simple showcase of Dioxus Server Functions. //! //! The other examples in this folder showcase advanced features of server functions like custom //! data types, error handling, websockets, and more. //! //! This example is meant to just be a simple starting point to show how server functions work....
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/07-fullstack/streaming.rs
examples/07-fullstack/streaming.rs
//! This example shows how to use the `Streaming<T, E>` type to send streaming responses from the //! server to the client (and the client to the server!). //! //! The `Streaming<T, E>` type automatically coordinates sending and receiving streaming data over HTTP. //! The `T` type parameter is the type of data being se...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/07-fullstack/custom_error_page.rs
examples/07-fullstack/custom_error_page.rs
//! To render custom error pages, you can create a layout component that captures errors from routes //! with an `ErrorBoundary` and display different content based on the error type. //! //! While capturing the error, we set the appropriate HTTP status code using `FullstackContext::commit_error_status`. //! The router...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/07-fullstack/server_state.rs
examples/07-fullstack/server_state.rs
//! This example shows how to use global state to maintain state between server functions. use std::rc::Rc; use axum_core::extract::{FromRef, FromRequest}; use dioxus::{ fullstack::{FullstackContext, extract::State}, prelude::*, }; use reqwest::header::HeaderMap; #[cfg(feature = "server")] use { dioxus::...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/07-fullstack/handling_errors.rs
examples/07-fullstack/handling_errors.rs
//! An example of handling errors from server functions. //! //! This example showcases a few important error handling patterns when using Dioxus Fullstack. //! //! Run with: //! //! ```sh //! dx serve --web //! ``` //! //! What this example shows: //! - You can return `anyhow::Result<T>` (i.e. `Result<T>` without an `...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/07-fullstack/auth/src/auth.rs
examples/07-fullstack/auth/src/auth.rs
//! The code here is pulled from the `axum-session-auth` crate examples, requiring little to no //! modification to work with dioxus fullstack. use async_trait::async_trait; use axum_session_auth::*; use axum_session_sqlx::SessionSqlitePool; use serde::{Deserialize, Serialize}; use sqlx::sqlite::SqlitePool; use std::c...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/07-fullstack/auth/src/main.rs
examples/07-fullstack/auth/src/main.rs
//! This example showcases how to use the `axum-session-auth` crate with Dioxus fullstack. //! We add the `auth::Session` extractor to our server functions to get access to the current user session. //! //! To initialize the axum router, we use `dioxus::serve` to spawn a custom axum server that creates //! our database...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/07-fullstack/desktop/src/main.rs
examples/07-fullstack/desktop/src/main.rs
#![allow(non_snake_case)] use dioxus::prelude::*; fn main() { // Make sure to set the url of the server where server functions are hosted - they aren't always at localhost #[cfg(not(feature = "server"))] dioxus::fullstack::set_server_url("http://127.0.0.1:8080"); dioxus::launch(app); } pub fn app() -...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/07-fullstack/hello-world/src/main.rs
examples/07-fullstack/hello-world/src/main.rs
//! A simple hello world example for Dioxus fullstack //! //! Run with: //! //! ```sh //! dx serve --web //! ``` //! //! This example demonstrates a simple Dioxus fullstack application with a client-side counter //! and a server function that returns a greeting message. //! //! The `use_action` hook makes it easy to ca...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/07-fullstack/ssr-only/src/main.rs
examples/07-fullstack/ssr-only/src/main.rs
//! This example showcases how to use Fullstack in a server-side rendering only context. //! //! This means we have no client-side bundle at all, and *everything* is rendered on the server. //! You can still use signals, resources, etc, but they won't be reactive on the client. //! //! This is useful for static site ge...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/07-fullstack/router/src/main.rs
examples/07-fullstack/router/src/main.rs
//! Run with: //! //! ```sh //! dx serve --platform web //! ``` use dioxus::prelude::*; fn main() { dioxus::LaunchBuilder::new() .with_cfg(server_only!(ServeConfig::builder().incremental( dioxus::server::IncrementalRendererConfig::default() .invalidate_after(std::time::Duration...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/02-building-ui/nested_listeners.rs
examples/02-building-ui/nested_listeners.rs
//! Nested Listeners //! //! This example showcases how to control event bubbling from child to parents. //! //! Both web and desktop support bubbling and bubble cancellation. use dioxus::prelude::*; fn main() { dioxus::launch(app); } fn app() -> Element { rsx! { div { onclick: move |_| p...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/02-building-ui/svg.rs
examples/02-building-ui/svg.rs
//! Thanks to @japsu and their project https://github.com/japsu/jatsi for the example! //! //! This example shows how to create a simple dice rolling app using SVG and Dioxus. //! The `svg` element and its children have a custom namespace, and are attached using different methods than regular //! HTML elements. Any ele...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/02-building-ui/disabled.rs
examples/02-building-ui/disabled.rs
//! A simple demonstration of how to set attributes on buttons to disable them. //! //! This example also showcases the shorthand syntax for attributes, and how signals themselves implement IntoAttribute use dioxus::prelude::*; fn main() { dioxus::launch(app); } fn app() -> Element { let mut disabled = use_s...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/05-using-async/suspense.rs
examples/05-using-async/suspense.rs
//! Suspense in Dioxus //! //! Suspense allows components to bubble up loading states to parent components, simplifying data fetching. use dioxus::prelude::*; fn main() { dioxus::launch(app) } fn app() -> Element { rsx! { div { h1 { "Dogs are very important" } p { ...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/05-using-async/backgrounded_futures.rs
examples/05-using-async/backgrounded_futures.rs
//! Backgrounded futures example //! //! This showcases how use_future, use_memo, and use_effect will stop running if the component returns early. //! Generally you should avoid using early returns around hooks since most hooks are not properly designed to //! handle early returns. However, use_future *does* pause the ...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/05-using-async/future.rs
examples/05-using-async/future.rs
//! A simple example that shows how to use the use_future hook to run a background task. //! //! use_future won't return a value, analogous to use_effect. //! If you want to return a value from a future, use use_resource instead. use async_std::task::sleep; use dioxus::prelude::*; fn main() { dioxus::launch(app);...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/05-using-async/streams.rs
examples/05-using-async/streams.rs
//! Handle async streams using use_future and awaiting the next value. use async_std::task::sleep; use dioxus::prelude::*; use futures_util::{Stream, StreamExt, future, stream}; fn main() { dioxus::launch(app); } fn app() -> Element { let mut count = use_signal(|| 10); use_future(move || async move { ...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/examples/05-using-async/clock.rs
examples/05-using-async/clock.rs
//! A simple little clock that updates the time every few milliseconds. use async_std::task::sleep; use dioxus::prelude::*; use web_time::Instant; fn main() { dioxus::launch(app); } fn app() -> Element { let mut millis = use_signal(|| 0); use_future(move || async move { // Save our initial time ...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/packages/const-serialize-macro/src/lib.rs
packages/const-serialize-macro/src/lib.rs
use proc_macro::TokenStream; use quote::{quote, ToTokens}; use syn::{parse_macro_input, DeriveInput, LitInt, Path}; use syn::{parse_quote, Generics, WhereClause, WherePredicate}; fn add_bounds(where_clause: &mut Option<WhereClause>, generics: &Generics, krate: &Path) { let bounds = generics.params.iter().filter_ma...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
false
DioxusLabs/dioxus
https://github.com/DioxusLabs/dioxus/blob/ec8f31dece5c75371177bf080bab46dff54ffd0e/packages/fullstack-macro/src/lib.rs
packages/fullstack-macro/src/lib.rs
// TODO: Create README, uncomment this: #![doc = include_str!("../README.md")] #![doc(html_logo_url = "https://avatars.githubusercontent.com/u/79236386")] #![doc(html_favicon_url = "https://avatars.githubusercontent.com/u/79236386")] use core::panic; use proc_macro::TokenStream; use proc_macro2::{Span, TokenStream as ...
rust
Apache-2.0
ec8f31dece5c75371177bf080bab46dff54ffd0e
2026-01-04T15:32:28.012891Z
true