haxeui-heaps

The Heaps backend of the HaxeUI framework
https://github.com/haxeui/haxeui-heaps

To install, run:

haxelib install haxeui-heaps 1.7.0 

See using Haxelib in Haxelib documentation for more information.

README.md

build status

haxeui-heaps

haxeui-heaps is the Heaps backend for HaxeUI.

Installation

haxeui-heaps relies on haxeui-core as well as Heaps. To install:

haxelib install heaps
haxelib install haxeui-core
haxelib install haxeui-heaps

Toolkit initialization and usage

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.

Addtional resources

Contributors
ianharrigan
haxeui
Version
1.7.0
Published
2 years ago
Dependencies
License
MIT

All libraries are free

Every month, more than a thousand developers use Haxelib to find, share, and reuse code — and assemble it in powerful new ways. Enjoy Haxe; It is great!

Explore Haxe

Haxe Manual

Haxe Code Cookbook

Haxe API documentation

You can try Haxe in the browser! try.haxe.org

Join us on GitHub!

Haxe is being developed on GitHub. Feel free to contribute or report issues to our projects.

Haxe on GitHub