12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- #![allow(non_snake_case)]
- //! Example: README.md showcase
- //!
- //! The example from the README.md.
- use dioxus::prelude::*;
- fn main() {
- dioxus_desktop::launch(app);
- }
- fn app() -> Element {
- rsx! {
- Button {
- a: "asd".to_string(),
- c: "asd".to_string(),
- d: Some("asd".to_string()),
- e: Some("asd".to_string()),
- }
- Button {
- a: "asd".to_string(),
- b: "asd".to_string(),
- c: "asd".to_string(),
- d: Some("asd".to_string()),
- e: "asd".to_string(),
- }
- Button {
- a: "asd".to_string(),
- c: "asd".to_string(),
- d: Some("asd".to_string()),
- }
- }
- }
- type SthElse<T> = Option<T>;
- #[derive(Props, PartialEq, Clone)]
- struct ButtonProps {
- a: String,
- #[props(default)]
- b: String,
- c: Option<String>,
- #[props(!optional)]
- d: Option<String>,
- #[props(optional)]
- e: SthElse<String>,
- }
- fn Button(props: ButtonProps) -> Element {
- rsx! {
- button {
- "{props.a} | "
- "{props.b:?} | "
- "{props.c:?} | "
- "{props.d:?} | "
- "{props.e:?}"
- }
- }
- }
|