1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-08 13:58:47 +00:00

Added CurvedAnimation Sample (#385)

This commit is contained in:
Ayush Kumar Shaw
2020-04-23 10:38:12 +05:30
committed by GitHub
parent 8763d754ad
commit ed284c78bd
3 changed files with 176 additions and 3 deletions

View File

@@ -12,7 +12,7 @@ Sample apps that showcasing Flutter's animation features
Building blocks and patterns
1. **AnimatedContainerDemo** Demonstrates how to use `AnimatedContainer`
1. **AnimatedContainerDemo** Demonstrates how to use `AnimatedContainer`.
2. **PageRouteBuilderDemo** Demonstrates how to use `Tween` and `Animation` to
*build a custom page route transition.
3. **AnimationControllerDemo** Demonstrates how to use an `AnimationController`.
@@ -23,7 +23,9 @@ Building blocks and patterns
6. **CustomTweenDemo** Demonstrates how to extend `Tween`.
7. **TweenSequenceDemo** Demonstrates how to use `TweenSequence` to build a
button that changes between different colors.
8. **FadeTransitionDemo** Demonstrates how to use `FadeTransition`.
8. **FadeTransitionDemo** Demonstrates how to use `FadeTransition`.
9. **AnimatedPositionedDemo** Demonstrates how to use `AnimatedPositioned`.
10. **AnimatedSwitcherDemo** Demonstrates how to use `AnimatedSwitcher`.
### Misc
@@ -39,8 +41,9 @@ it using a `PageRouteBuilder`.
spring simulation.
- **CardSwipeDemo** A swipeable card that demonstrates how to use gesture
detection to drive an animation.
- **AnimatedList** Demonstrates how to use `AnimatedList`
- **AnimatedList** Demonstrates how to use `AnimatedList`.
- **HeroAnimationDemo** Demonstrates how to use `Hero` animation.
- **CurvedAnimationDemo** Demonstrates how to use different curves in `CurvedAnimation`.
## Other Resources