mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Merge pull request #434 from mpcomplete/card.test
Fix failing test card_collection.dart
This commit is contained in:
commit
830357ee74
@ -175,13 +175,13 @@ class Dismissable extends StatefulComponent {
|
||||
onGestureFlingStart: _handleFlingStart,
|
||||
child: new SizeObserver(
|
||||
callback: _handleSizeChanged,
|
||||
child: new SlideTransition(
|
||||
child: new FadeTransition(
|
||||
performance: _fadePerformance,
|
||||
position: new AnimatedValue<Point>(Point.origin, end: _activeCardDragEndPoint),
|
||||
child: new FadeTransition(
|
||||
onCompleted: _handleFadeCompleted,
|
||||
opacity: new AnimatedValue<double>(1.0, end: 0.0),
|
||||
child: new SlideTransition(
|
||||
performance: _fadePerformance,
|
||||
onCompleted: _handleFadeCompleted,
|
||||
opacity: new AnimatedValue<double>(1.0, end: 0.0),
|
||||
position: new AnimatedValue<Point>(Point.origin, end: _activeCardDragEndPoint),
|
||||
child: child
|
||||
)
|
||||
)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user