euv-example 0.4.6

An example application demonstrating the euv UI framework with reactive signals, custom components, and WebAssembly.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use crate::*;

/// Props for the `my_card` component.
///
/// Defines the strongly-typed interface for the card wrapper.
#[derive(Data, Debug, Default, New)]
pub(crate) struct MyCardProps {
    /// The card title displayed in the header.
    #[get(pub(crate))]
    #[set(pub(crate))]
    pub(crate) title: String,
}