ProgressNS / nativescript-ui-feedback

This repository is used for customer feedback regarding Telerik UI for NativeScript. The issues system here is used by customers who want to submit their feature requests or vote for existing ones.
Other
115 stars 21 forks source link

In Modal Dialog, RadListView swipe action causes random animation on list view items #1385

Open triple-j-95 opened 4 years ago

triple-j-95 commented 4 years ago

Environment

Describe the bug

Swiping an item of RadListView on a modal dialog view causes multiple list view items to randomly animate.

If you swipe an item very carefully and slowly, while trying not to scrolling the list view or pulling down the modal view, then sometimes it works as expected.

To Reproduce

Expected behavior

Only item that is swiped, should move and swipe view must appear.

Sample project https://play.nativescript.org/?template=play-ng&id=hQiGvF&v=11

Additional context

NickIliev commented 4 years ago

@jon-jj it looks like an issue related to when creating a modal which is not fullscreen so I will mark this one as a bug.

Note that until recently iOS guidelines were that you could only have a modal page that is fullscreen. Setting fullscreen to true (which is also the default value) is resolving the issue.

let options = {
    context: {},
    fullscreen: true, // Here
    viewContainerRef: this._vcRef
};

https://play.nativescript.org/?template=play-ng&id=hQiGvF&v=12

triple-j-95 commented 4 years ago

Thanks NickIliev for the info. I will temporarily use the fullscreen option instead.

MohammedBashiru commented 4 years ago

Please any plans to resolve this ?