//! Shared no-op [`UiCtx`] used off-frame.
//!
//! `NullUiCtx` is a [`UiCtx`] implementation whose widget methods do nothing.
//! It is used wherever OxiUI must drive user-supplied closures without a live
//! backend frame:
//!
//! * the headless paths ([`crate::App::run_headless_once`] /
//! [`crate::App::run_with_return`]), and
//! * lifecycle hooks (`on_close` / `on_resize` / `on_focus`), which fire from a
//! window event — outside any live `EguiUiCtx` / `IcedUiCtx` frame — where
//! there is no real drawing surface to bind to.
use ;
/// A no-op [`UiCtx`]: every widget call is ignored and buttons never report a click.
///
/// This is deliberately zero-sized and cheap to construct on demand.
pub ;