Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 450 Bytes

File metadata and controls

9 lines (7 loc) · 450 Bytes

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
}