@:uiComp("view")
class ViewComp extends h2d.Flow implements h2d.domkit.Object {
static var SRC = <view><text text="text" /></view>
}
class Main extends hxd.App {
override function init() { }
static function main() { new Main(); }
}
I always get the same error: "domkit.Identifier should be String" and not much more.
The full error is: "haxe\lib\heaps/1,10,0/h2d/domkit/BaseComponents.hx:550: characters 3-37 : domkit.Identifier should be String"
If I compile the following example:
I always get the same error: "domkit.Identifier should be String" and not much more.
The full error is: "haxe\lib\heaps/1,10,0/h2d/domkit/BaseComponents.hx:550: characters 3-37 : domkit.Identifier should be String"
The installed modules are as follows:
I would expect this example to compile, or is there a wrong Id being passed for some reason?