You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
samples/animations
Taha Tesser 2fd5bfe9ef
Add missing font for `custom_tween.dart` sample (#1730)
1 year ago
..
android Update `sdk` constraint range and update runners (#1706) 1 year ago
assets Recommend partial clone instead of shallow clone, remove unused blobs (#1078) 2 years ago
fonts Add missing font for `custom_tween.dart` sample (#1730) 1 year ago
ios Update `sdk` constraint range and update runners (#1706) 1 year ago
lib Replace `MaterialButton` in the `AnimatedBuilder` sample (#1729) 1 year ago
linux Update `sdk` constraint range and update runners (#1706) 1 year ago
macos Update `sdk` constraint range and update runners (#1706) 1 year ago
test Replace `MaterialButton` in the `AnimatedBuilder` sample (#1729) 1 year ago
web Flutter 3.7.0 (#1556) 1 year ago
windows Update `sdk` constraint range and update runners (#1706) 1 year ago
.gitignore touch ./animations (#148) 5 years ago
.metadata Update `sdk` constraint range and update runners (#1706) 1 year ago
README.md Moved two animation vignettes into misc. (#425) 4 years ago
analysis_options.yaml Tidyup `animations` sample (#1672) 1 year ago
codelab_rebuild.yaml Flutter 3.7.0 (#1556) 1 year ago
pubspec.yaml Add missing font for `custom_tween.dart` sample (#1730) 1 year ago

README.md

Animation Samples

Sample apps that showcase Flutter's animation features

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

  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.
  4. TweenDemo: Demonstrates how to use a Tween with an AnimationController.
  5. AnimatedBuilderDemo: Demonstrates how to use an AnimatedBuilder with an AnimationController.
  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.

Misc

Other uses-cases and examples

  • RepeatingAnimationDemo: Demonstrates how to repeat an animation.
  • ExpandCardDemo: Demonstrates how to use AnimatedCrossFade to fade between two widgets and change the size.
  • CarouselDemo: Demonstrates how to use PageView with a custom animation.
  • FocusImageDemo: Demonstrates how to measure the size of a widget and expand it using a PageRouteBuilder.
  • PhysicsCardDragDemo: Demonstrates how to run an AnimationController with a spring simulation.
  • CardSwipeDemo: A swipeable card that demonstrates how to use gesture detection to drive an animation.
  • AnimatedList: Demonstrates how to use AnimatedList.
  • AnimatedPositionedDemo: Demonstrates how to use AnimatedPositioned.
  • AnimatedSwitcherDemo: Demonstrates how to use AnimatedSwitcher.
  • HeroAnimationDemo: Demonstrates how to use Hero animation.
  • CurvedAnimationDemo: Demonstrates how to use different curves in CurvedAnimation.

Other Resources