menu
freehand package
documentation
utils/easings.dart
Easings
easeInOutQuad static method
easeInOutQuad static method
dark_mode
light_mode
easeInOutQuad
static method
double
easeInOutQuad
(
double
t
)
Implementation
static double easeInOutQuad(double t) { return t < 0.5 ? 2 * t * t : 1 - pow(-2 * t + 2, 2) / 2; }
freehand package
documentation
utils/easings
Easings
easeInOutQuad static method
Easings class