Moving animated list sample (#366)

pull/367/head
Andrew Brogdon 5 years ago committed by GitHub
parent c358eda342
commit 1289227832
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

@ -108,7 +108,7 @@ packages:
name: pedantic name: pedantic
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "1.9.0" version: "1.8.0+1"
petitparser: petitparser:
dependency: transitive dependency: transitive
description: description:
@ -169,7 +169,7 @@ packages:
name: test_api name: test_api
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "0.2.15" version: "0.2.11"
typed_data: typed_data:
dependency: transitive dependency: transitive
description: description:

Loading…
Cancel
Save