timbell
timbell
I had a similar issue trying to use sortable-view within a ui.bootstrap.modal. The modal class has position fixed which was causing the sv-helper clone to be offset by the parent...
The actual cause of the problem I had is detailed here: http://meyerweb.com/eric/thoughts/2011/09/12/un-fixing-fixed-elements-with-css-transforms/ The problem isn't the position fixed on the modal class but rather the transform on the modal-dialog class...
I came across this issue today but have since worked around it by using `useOldImageOnUrlChange: true` which I want for my use-case anyway. I think the bug could be fixed...
I came on to report what looks like the same issue. The animation duration is taken as 0 so the end state is activated immediately. For [example](https://stackblitz.com/edit/nativescript-stackblitz-templates-4zmkke) (see the fade...
Yep, that does fix the easing - thanks! Unfortunately, this [iisue](https://github.com/NativeScript/angular/issues/52) means I may as well switch to native animations
I just asked myself the same question. This works for me... wrap the `Swiper.children` call as follows: ``` child: Swiper.children(...) ``` => ``` import 'dart:ui'; ... child: ScrollConfiguration( behavior: ScrollConfiguration.of(context).copyWith(...