Index: sky/sdk/lib/widgets/drawer.dart |
diff --git a/sky/sdk/lib/widgets/drawer.dart b/sky/sdk/lib/widgets/drawer.dart |
index ab5239748f9fa4bc1bb56217c3bc0d9894bb9173..db78cf9012f23a80053524b5723b8e8616443a63 100644 |
--- a/sky/sdk/lib/widgets/drawer.dart |
+++ b/sky/sdk/lib/widgets/drawer.dart |
@@ -10,6 +10,7 @@ import '../theme/shadows.dart'; |
import 'animated_component.dart'; |
import 'animated_container.dart'; |
import 'basic.dart'; |
+import 'scrollable_viewport.dart'; |
import 'theme.dart'; |
// TODO(eseidel): Draw width should vary based on device size: |
@@ -138,7 +139,9 @@ class Drawer extends AnimatedComponent { |
backgroundColor: Theme.of(this).canvasColor, |
boxShadow: shadows[level]), |
width: _kWidth, |
- child: new Block(children) |
+ child: new ScrollableViewport( |
+ child: new Block(children) |
+ ) |
)); |
return new Listener( |