blob: 181dd974864f5213daf6bd76d7892fecbe93ac5d (
plain) (
blame)
1
2
3
4
5
6
|
//! Listen and react to keyboard events.
#[cfg(not(target_arch = "wasm32"))]
pub use iced_winit::input::keyboard::{KeyCode, ModifiersState};
#[cfg(target_arch = "wasm32")]
pub use iced_web::keyboard::{KeyCode, ModifiersState};
|