Eduardo Speroni
Eduardo Speroni
I can speak for the angular side for you. Basically what you need is to write a renderer that translates your tsx and other operations to nativescript views. This is...
You might want to try to install `@angular-devkit/build-angular` as the message says. It's probably necessary for angular 13
After further working on this, `SuspendType.Loaded` seems to be sufficient. One of my commits had actually messed with the logic resulting in a crash (trying to re-add children to the...
@NathanWalker I believe this just requires some testing and maybe treatment of edge cases. For example: if the view is detached and reusable is set to false, should it run...
@mrwrighty seems like you have an incomplete installation, as that error is coming straight from npm itself. Most likely you updated node and is still using different versions of npm...
I believe this issue is because iOS **requires** you to call `UIApplicationMain` synchronously (which we do on `Application.run`), so when you do an async/await and delay the UIApplicationMain call the...
Todo list: - [ ] update `.d.ts` (type comments are wrong) - [ ] test with fragment 1.4+ - [ ] test with fragment
I think we should wait to see if #8793 fixes it (or breaks this PR)
You can work around this by seeking to a frame (https://stackoverflow.com/questions/17079593/how-to-set-the-preview-image-in-videoview-before-playing). Unfortunately, the android mediaplayer does not show thumbs when the video is loaded. There are a few alternatives worth...
I wrote https://github.com/edusperoni/nativescript-shared-notification-delegate for this exact reason. My PRs with the fixes are on both repos and allow any library to share a single delegate (interception is also possible): https://github.com/EddyVerbruggen/nativescript-plugin-firebase/pull/1272...