@@ -1411,11 +1411,15 @@ abstract final class Curves {
1411
1411
1412
1412
/// A cubic animation curve that speeds up quickly and ends slowly.
1413
1413
///
1414
+ /// This is the same as the CSS easing function `ease` .
1415
+ ///
1414
1416
/// {@animation 464 192 https://flutter.github.io/assets-for-api-docs/assets/animation/curve_ease.mp4}
1415
1417
static const Cubic ease = Cubic (0.25 , 0.1 , 0.25 , 1.0 );
1416
1418
1417
1419
/// A cubic animation curve that starts slowly and ends quickly.
1418
1420
///
1421
+ /// This is the same as the CSS easing function `ease-in` .
1422
+ ///
1419
1423
/// {@animation 464 192 https://flutter.github.io/assets-for-api-docs/assets/animation/curve_ease_in.mp4}
1420
1424
static const Cubic easeIn = Cubic (0.42 , 0.0 , 1.0 , 1.0 );
1421
1425
@@ -1517,6 +1521,8 @@ abstract final class Curves {
1517
1521
1518
1522
/// A cubic animation curve that starts quickly and ends slowly.
1519
1523
///
1524
+ /// This is the same as the CSS easing function `ease-out` .
1525
+ ///
1520
1526
/// {@animation 464 192 https://flutter.github.io/assets-for-api-docs/assets/animation/curve_ease_out.mp4}
1521
1527
static const Cubic easeOut = Cubic (0.0 , 0.0 , 0.58 , 1.0 );
1522
1528
@@ -1618,6 +1624,8 @@ abstract final class Curves {
1618
1624
/// A cubic animation curve that starts slowly, speeds up, and then ends
1619
1625
/// slowly.
1620
1626
///
1627
+ /// This is the same as the CSS easing function `ease-in-out` .
1628
+ ///
1621
1629
/// {@animation 464 192 https://flutter.github.io/assets-for-api-docs/assets/animation/curve_ease_in_out.mp4}
1622
1630
static const Cubic easeInOut = Cubic (0.42 , 0.0 , 0.58 , 1.0 );
1623
1631
0 commit comments