euv-example 0.5.8

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
/// Props for the `page_header` component.
///
/// Defines the strongly-typed interface for a standard page header
/// with a title and subtitle.
#[derive(Clone, Default)]
pub(crate) struct PageHeaderProps {
    /// The page title text displayed in the heading.
    pub(crate) title: &'static str,
    /// The page subtitle / description text.
    pub(crate) subtitle: &'static str,
}