Home > Enterprise >  How to Access Reduce Motion setting in an app
How to Access Reduce Motion setting in an app

Time:10-22

I would like to detect whether Reduce Motion is enabled on a device to prevent any animations from running inside my Xamarin.Forms application.

reduce motion

I fully suspect I would need to write some platform specific code in order to detect this setting if it is even possible. I am struggling to find any resources on this topic though. Does anyone know if it is possible and if so how to go about accessing this information?

CodePudding user response:

check the IsReducedMotionEnabled property of UIAccessibility

  • Related