1
0
mirror of https://github.com/flutter/samples.git synced 2026-04-03 18:22:45 +00:00

address code review comments

This commit is contained in:
John Ryan
2019-07-12 16:23:51 -07:00
parent 576a33b26b
commit 7a5b58b65c
4 changed files with 44 additions and 32 deletions

View File

@@ -1,12 +1,31 @@
# Animation Samples
Sample apps that showcasing Flutter's animation features
## Basics
## Goals
- Demonstrate the building blocks for animations and how they work together
- Provide samples for common patterns and use-cases
## Samples
### Basics
Building blocks and patterns
**AnimationControllerDemo**
Demonstrates how to use an `AnimationController`.
### Misc
## Misc
**ExpandCard**
Other uses-cases and examples
**ExpandCardDemo**
Demonstrates how to use `AnimatedCrossFade` to fade between two widgets and
change the size.
## Other Resources
- [Introduction to animations](https://flutter.dev/docs/development/ui/animations)
- [Animation widgets](https://flutter.dev/docs/development/ui/widgets/animation)
- [Flutter cookbook - Animations](https://flutter.dev/docs/cookbook/animation)
- [Animations tutorial](https://flutter.dev/docs/development/ui/animations/tutorial)