dioxus/examples/generic_component.rs

29 lines
745 B
Rust
Raw Normal View History

2024-02-14 20:33:07 +00:00
//! 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`,
use dioxus::prelude::*;
2024-02-14 20:33:07 +00:00
use std::fmt::Display;
fn main() {
launch_desktop(app);
}
fn app() -> Element {
2024-01-16 19:18:46 +00:00
rsx! {
generic_child { data: 0 }
}
}
2024-01-15 21:06:05 +00:00
#[derive(PartialEq, Props, Clone)]
struct GenericChildProps<T: Display + PartialEq + Clone + 'static> {
data: T,
}
2024-01-15 21:06:05 +00:00
fn generic_child<T: Display + PartialEq + Clone>(props: GenericChildProps<T>) -> Element {
2024-01-16 19:18:46 +00:00
rsx! {
2024-01-15 22:40:56 +00:00
div { "{props.data}" }
}
}