_Yes_
similar issues:
https://github.com/telerik/nativescript-ui-feedback/issues/878
https://github.com/telerik/nativescript-ui-feedback/issues/575
I decided to create a new issue, as this might be related to the use of a ScrollView within the RadSideDrawer.
We use the RadSideDrawer component as our root view (app-root.xml) and have a huge number of menu items, so that we need to embed the menu items within a ScrollView.
The problem: when we open the drawer, scroll down/up and tap one of the menu items, the tap event is not raised. You need to make a double-tap: the first tap seems to stop the scrolling gesture of the ScrollView and the second tap raises the desired action that is defined in the tap event.
Please note:
This issue occurs differently on different Android devices.
Our devices:
Here you can see the behaviour on Nokia 5.1:

Using a ScrollView within a Drawer as the main menu should not be a bad decision, as we know about 3-4 Android apps that are using such a scrollable main menu within a Drawer and there everything works as expected without any delay or the need of tapping a menu item a second time to make it work.
We tested only Android at the moment. The Android version doesn't matter, as this issue occurs on Android 5-Android 9.
I took the drawer-navigation-template app and mofified it just by adding more menu items to the SideDrawer component, so that its content gets scrollable.
Here is the modified version:
RadSideDrawerAndroidIssue.zip
@NickIliev
just to give more detailed information on this:
The issue is not related to the ScrollView component.
I tested adding a ListView with buttons to the RadSideDrawer and the same ListView to a page.
Modified sample project can be found here:
RadSideDrawerAndroidIssue_ListView.zip
While the tap event is raised as expected within the ListView on the Page, the Button has to be tapped twice within the SideDrawer to step into the tap event (even with waiting some time after scrolling has finished).
SideDrawer:

Page:

@felix-idf thanks for the detailed information and the animated gifs - confirming the issue is happening with both ScrollView and ListView but only when they are part of the RadSideDrawer drawer content. The same scenario is working as expected when the scrollable content is outside of sidedrawer.
@NickIliev ,
we figured out, that this issue is related to the gesuresEnabled property of the RadSideDrawer.
When setting this property to _false_, the issue does not occur and the tap event is raised as expected after scrolling the content.
Unfortunately, setting gesturesEnabled to false is not an applicable for us, because we want to keep two options, that do not work anymore when gesturesEnables is set to false:
My observation is that this issue happens constantly on Android 9, on Android 7.1.1 as previously state it is very hard to reproduce. On that version you have to be at the top of the ListView, pull it down (to show the transparent arc), then after release quickly tap the item (while the arc is being animated upwards).
Same kind of issue here... inside RadDrawer
HeaderView
ScrollView
--features
--settings
space
Logout buttonView on bottom
It makes me logout if I clic anywhere but no reaction when I clic on the button itself...Really strange.
Same here with nts 6.0.2 + angular, as if the first tap is to activate the side drawer and second tap to navigate.
Woo hoo! I found a work around. In case it helps someone else, here is what I did.
private scrollHack: Subject<string> = new Subject();menuScroll(scrollEvent) {
this.scrollHack.next('');
}
ngAfterViewInit() {
// https://github.com/mudlabs/nativescript-eventify
const getObjectXYRelativeToPage = view =>
view.getLocationRelativeTo(Frame.topmost().currentPage);
// https://github.com/mudlabs/nativescript-eventify
const touchUp = veiw => {
const origin = getObjectXYRelativeToPage(veiw);
veiw.android.dispatchTouchEvent(
android.view.MotionEvent.obtain(
android.os.SystemClock.uptimeMillis(),
android.os.SystemClock.uptimeMillis(),
android.view.MotionEvent.ACTION_UP,
origin.x + veiw.getActualSize().width / 2,
origin.y + veiw.getActualSize().height / 2,
0
)
);
};
this.scrollHack.pipe(
debounceTime(300)
).subscribe({
next: val => {
timer(10).subscribe({
next: val => {
const sideDrawer = <RadSideDrawer>Application.getRootView();
touchUp(sideDrawer); // the magic
}
});
}
});
}
Most helpful comment
@felix-idf thanks for the detailed information and the animated gifs - confirming the issue is happening with both ScrollView and ListView but only when they are part of the RadSideDrawer drawer content. The same scenario is working as expected when the scrollable content is outside of sidedrawer.