'MAUI Shell remove OverScroll from the sides

I've bein workeing on my app. It's useing SwipeView and 9 times out of 10, when I want to swipe the item to remove it - I get this (as I called it) ScrollPreview (I have no idea how it's actually called). The source of this blue thing seems to come from Shell (AppShell).

Blue thing example

Is there any way to remove it?

Edit: On further investigartion it seems to be connected to ShellContent. The OverScroll (the name pointed out by Gerald Versluis in the comments) does not appear if underlying structure if it is not based on ShellContent.



Solution 1:[1]

Sveiki! If you don't mind disabling the scroll glow effect in your whole application adding this style in res/values/styles.xml would be the easiest fix:

<style name="AppTheme" parent="AppBaseTheme">
    <item name="android:overScrollMode">never</item>
</style>

Or you can just opt out in your layouts file for a single layout:

<MyCustomView android:overScrollMode="never">
...
</MyCustomView>

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 cascading-jox