bevy_ios_toolkit 0.2.1

Native iOS integrations for Bevy as ECS resources and messages: StoreKit IAP, Google AdMob ads, App Tracking Transparency, Game Center, review prompts, haptics and safe-area — each behind a feature, over a polled C-ABI Swift bridge with a testable desktop fake.
Documentation
//! Apple-platform niceties: impact [`haptics`], the top [`safe_area`] inset, and
//! opening outbound [`links`]. Thin, fire-and-forget wrappers over
//! `Sources/Platform/PlatformBridge.swift`; no-ops off iOS (links shell out to `open` on
//! macOS so the flow is debuggable on desktop).
//!
//! These are plain functions — call them from any system. There's no plugin and
//! no state to wire.
//!
//! ```no_run
//! use bevy_ios_toolkit::platform::{haptics, safe_area, links, Haptic};
//!
//! haptics::play(Haptic::Light);
//! let inset = safe_area::top();
//! links::open("https://example.com");
//! ```

pub mod haptics;
pub mod links;
pub mod safe_area;

pub use haptics::Haptic;