inset 0.3.1

UI framework: Flutter's widgets, plus Entity, on a Rust render engine
docs.rs failed to build inset-0.3.1
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: inset-0.2.1

App-author crate. One dependency for a window, widgets, and [Entity].

Layer crates (inset-widgets, inset-foundation, …) stay the source of truth. This crate re-exports the types an application names. Widget kits (inset-cupertino, inset-winui) are separate dependencies, and the rendering layer stays behind inset-widgets. Hosts and ports still depend on the layer crates directly.

use inset::{App, IntoWidget, run_app};
use inset_cupertino::CupertinoApp;

#[inset::main]
fn main(app: &mut App) {
    run_app(app, CupertinoApp::new().home(Home).into_widget());
}