euv-example 0.3.13

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
13
14
use crate::*;

/// Props for the `form_input` component.
///
/// Defines the strongly-typed interface for the labeled input field.
#[derive(Data, Debug, Default)]
pub struct FormInputProps {
    /// The label text displayed above the input.
    pub label: String,
    /// The placeholder text shown when the input is empty.
    pub placeholder: String,
    /// The current input value.
    pub value: String,
}