Reduced animations - Flutter
With Flutter, you can use MediaQuery.of(context)
to retrieve the value of disableAnimations
. If the value is true
, you could choose to disable (non-essential) animations in your app.
if (MediaQuery.of(this).disableAnimations) {
// Disable animations
}