mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-12-18 16:43:21 +00:00
6c323e9fc5
* Move getting started to Guide * Clean up summary and getting started * Shorten intro by moving stuff to individual platform docs * Make intro even shorter, summarize features * Further cleanup; move development-related docs to separate section * Make `guide` a crate. Turn code samples into examples so that we can check if they compile * Rewrite "Describing the UI": * Focus on RSX syntax (interactivity covered in later chapters); make sure samples are tested; concise language * Move some "special attribute" samples to the `examples` directory * Simplify introduction to components * Simplify introduction to component props * Document Prop features; add code samples * Simplify component children docs * Interactivity: better introduction to events * Hooks: better introduction * Remove outdated doc * Introducs use_ref * Simplify User Input chapter * Document event handler props * Meme editor example * Meme editor walkthrough * Add dark mode example * Guide for context; dark mode example * Guide: custom hooks * Guide: conditional rendering * Guide: rendering lists * Guide: rendering lists + keys * Move remaining infor from Reference to guide * Delete reference book
36 lines
740 B
Rust
36 lines
740 B
Rust
// ANCHOR: all
|
|
#![allow(non_snake_case)]
|
|
use dioxus::prelude::*;
|
|
|
|
fn main() {
|
|
dioxus::desktop::launch(App);
|
|
}
|
|
|
|
fn App(cx: Scope) -> Element {
|
|
// ANCHOR: Clickable_usage
|
|
cx.render(rsx! {
|
|
Clickable {
|
|
href: "https://www.youtube.com/watch?v=C-M2hs3sXGo",
|
|
"How to " i {"not"} " be seen"
|
|
}
|
|
})
|
|
// ANCHOR_END: Clickable_usage
|
|
}
|
|
|
|
// ANCHOR: Clickable
|
|
#[derive(Props)]
|
|
struct ClickableProps<'a> {
|
|
href: &'a str,
|
|
children: Element<'a>,
|
|
}
|
|
|
|
fn Clickable<'a>(cx: Scope<'a, ClickableProps<'a>>) -> Element {
|
|
cx.render(rsx!(
|
|
a {
|
|
href: "{cx.props.href}",
|
|
class: "fancy-button",
|
|
&cx.props.children
|
|
}
|
|
))
|
|
}
|
|
// ANCHOR_END: Clickable
|