pub fn ontouchstart<'a>(
    _cx: &'a ScopeState,
    _f: impl FnMut(Event<TouchData>) + 'a
) -> Attribute<'a>
Expand description

The touchstart event fires when the user starts touching an element.

Event Data: TouchData

Example

fn app(cx: Scope) -> Element {
    render!(
        rect {
            width: "100",
            height: "100",
            background: "red",
            ontouchstart: |_| println!("Started touching!")
        }
    )
}