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

feat: add more animations examples (#345)

This commit is contained in:
Govind Dixit
2020-03-10 20:55:45 +05:30
committed by GitHub
parent e24fef3af5
commit c358eda342
3 changed files with 125 additions and 1 deletions

View File

@@ -11,6 +11,7 @@ import 'src/basics/04_tweens.dart';
import 'src/basics/05_animated_builder.dart';
import 'src/basics/06_custom_tween.dart';
import 'src/basics/07_tween_sequence.dart';
import 'src/basics/08_animated_list.dart';
import 'src/misc/card_swipe.dart';
import 'src/misc/carousel.dart';
import 'src/misc/expand_card.dart';
@@ -57,6 +58,10 @@ final basicDemos = [
name: 'Tween Sequences',
route: TweenSequenceDemo.routeName,
builder: (context) => TweenSequenceDemo()),
Demo(
name: 'AnimatedList',
route: AnimatedListDemo.routeName,
builder: (context) => AnimatedListDemo()),
];
final miscDemos = [