Search code examples
xamarinxamarin.formsuiscrollviewscrollview

Changing ScrollView "scrolled" color from default


Is it possible to change the ScrollView default color for when a page is completely scrolled up/down?

It seems there is no native property in Xamarin.Forms to do this.

enter image description here


Solution

  • It seems to be called an edge effect for scroll view. At least on Android platform. Try to add this to android/app/src/res/values/styles.xml: <item name="android:colorEdgeEffect">#eb4034</item> *with color you want.