Commit 8a823328 authored by Adam Barth's avatar Adam Barth Committed by GitHub

Make animation_demo a manual test (#6117)

This demo doesn't work properly in landscape and is confusing. It's
really more of a test of the material arc code.

Fixes #5710
parent 036f7ef5
...@@ -188,7 +188,7 @@ class _PointDemoState extends State<_PointDemo> { ...@@ -188,7 +188,7 @@ class _PointDemoState extends State<_PointDemo> {
final MaterialPointArcTween arc = new MaterialPointArcTween(begin: _begin, end: _end); final MaterialPointArcTween arc = new MaterialPointArcTween(begin: _begin, end: _end);
return new RawGestureDetector( return new RawGestureDetector(
behavior: _dragTarget == null ? HitTestBehavior.deferToChild : HitTestBehavior.opaque, behavior: _dragTarget == null ? HitTestBehavior.deferToChild : HitTestBehavior.opaque,
gestures: <Type, GestureRecognizerFactory>{ gestures: <Type, GestureRecognizerFactory>{
ImmediateMultiDragGestureRecognizer: (ImmediateMultiDragGestureRecognizer recognizer) { // ignore: map_value_type_not_assignable, https://github.com/flutter/flutter/issues/5771 ImmediateMultiDragGestureRecognizer: (ImmediateMultiDragGestureRecognizer recognizer) { // ignore: map_value_type_not_assignable, https://github.com/flutter/flutter/issues/5771
return (recognizer ??= new ImmediateMultiDragGestureRecognizer()) return (recognizer ??= new ImmediateMultiDragGestureRecognizer())
..onStart = _handleOnStart; ..onStart = _handleOnStart;
...@@ -407,8 +407,6 @@ class _ArcDemo { ...@@ -407,8 +407,6 @@ class _ArcDemo {
class AnimationDemo extends StatefulWidget { class AnimationDemo extends StatefulWidget {
AnimationDemo({ Key key }) : super(key: key); AnimationDemo({ Key key }) : super(key: key);
static const String routeName = '/animation';
@override @override
_AnimationDemoState createState() => new _AnimationDemoState(); _AnimationDemoState createState() => new _AnimationDemoState();
} }
...@@ -469,3 +467,9 @@ class _AnimationDemoState extends State<AnimationDemo> with TickerProviderStateM ...@@ -469,3 +467,9 @@ class _AnimationDemoState extends State<AnimationDemo> with TickerProviderStateM
); );
} }
} }
void main() {
runApp(new MaterialApp(
home: new AnimationDemo()
));
}
...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
export 'animation_demo.dart';
export 'bottom_navigation_demo.dart'; export 'bottom_navigation_demo.dart';
export 'buttons_demo.dart'; export 'buttons_demo.dart';
export 'contacts_demo.dart'; export 'contacts_demo.dart';
......
...@@ -229,13 +229,6 @@ final List<GalleryItem> kAllGalleryItems = <GalleryItem>[ ...@@ -229,13 +229,6 @@ final List<GalleryItem> kAllGalleryItems = <GalleryItem>[
buildRoute: (BuildContext context) => new TooltipDemo() buildRoute: (BuildContext context) => new TooltipDemo()
), ),
// Styles // Styles
new GalleryItem(
title: 'Animation',
subtitle: 'Material motion for points and rectangles',
category: 'Style',
routeName: AnimationDemo.routeName,
buildRoute: (BuildContext context) => new AnimationDemo()
),
new GalleryItem( new GalleryItem(
title: 'Colors', title: 'Colors',
subtitle: 'All of the predefined colors', subtitle: 'All of the predefined colors',
......
...@@ -55,7 +55,6 @@ final List<String> demoTitles = <String>[ ...@@ -55,7 +55,6 @@ final List<String> demoTitles = <String>[
'Time picker', 'Time picker',
'Tooltips', 'Tooltips',
// Style // Style
'Animation',
'Colors', 'Colors',
'Typography' 'Typography'
]; ];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment