JWiseCoder
JWiseCoder
There are some related problems still unaddressed in [this](https://github.com/NativeScript/angular/issues/95) issue. Though that issue isn't what is causing this one. I have a patch that I use to fix the problems...
@NathanWalker, is there any update on this?
OK, I've worked out what the issues were for the animations. Or at least, I got them working for me, but I can't patch it properly (yet). All I can...
I'm also having this issue.
It looks like it's the `getKeyframeDuration` function in **packages/angular/src/lib/animations/utils.ts**. It's getting `styles` as a Map object, but it's trying to get `styles.offset`. If you look into `styles`, there is a...
It looks like it should be doing the easing per keyframe, but that doesn't look like how it's set up. I don't even see the easing data coming in the...
Correction: It **_is_** coming through in Angular. I went back to the demo app I had made for this issue, and I was debugging through the animations, and I found...
This is still not working in the current version. At present, I am patching this whole function: ``` createKeyframeAnimation = function(styles, duration, delay, easing) { const info = { isForwards:...
I did. It still crashes without writing out an error. I even put a delay on each setTimeout, and it still crashed.
I still haven't found any way to keep it from crashing. It has something to do with how the Activity is being closed. Not sure if it's something inside the...