Expand description
Action and event dispatching.
This module handles the flow of user interactions from UI → logic:
-
Actions (
@actions.xxxin DSL) — dispatched when users interact with buttons, forms, etc. Handlers are registered viaEngine::on_actionorWasmEngine::onAction. -
Events — low-level UI events (click, input change) that can be mapped to actions via the
EventRouter.
Re-exports§
pub use action::Action;pub use action::ActionDispatcher;pub use event::Event;pub use event::EventHandler;