haxeui-heaps
is the Heaps
backend for HaxeUI
.
haxeui-heaps
relies on haxeui-core
as well as Heaps
. To install:
haxelib install heaps
haxelib install haxeui-core
haxelib install haxeui-heaps
Before you start using HaxeUI
in your project, you must first initialize the Toolkit
.
Toolkit.init();
Once the toolkit is initialized, you can add components using the methods specified here.
var app = new HaxeUIApp();
app.ready(
function() {
var main = ComponentMacros.buildComponent("assets/xml/test.xml"); // whatever your XML layout path is
app.addComponent(main);
app.start();
}
);
Some examples are here.
- component-explorer - Browse HaxeUI components
- playground - Write and test HaxeUI layouts in your browser
- component-examples - Various componet examples
- haxeui-api - The HaxeUI api docs.
- haxeui-guides - Set of guides to working with HaxeUI and backends.