I'm currently working on integrating the WikitudeArchitectView into my TypeScript code. I've successfully registered the element in the main.ts TypeScript file:
var architectView = require("nativescript-wikitudearchitectview");
registerElement("ArchitectView", () => architectView.ArchitectView);
<StackLayout>
<ArchitectView urlString="http://10.20.30.79:8888" urlLoaded='urlLoaded' urlLoadError='urlLoadError' urlInvoked='urlInvoked'>
</ArchitectView>
</StackLayout>
However, when running the code on my device, I encounter this error https://i.sstatic.net/vOcZI.png
It seems like I need to figure out how to render the ArchitectView after the page has loaded (maybe utilizing ngOnInit), but I'm not sure how to achieve this.