| Index: sky/framework/components/drawer.dart
|
| diff --git a/sky/framework/components/drawer.dart b/sky/framework/components/drawer.dart
|
| index 78b61b968a5bd89251ac9a57fc04961b546e1c85..2c3cb3aabc03088607cd013839d05ffd00783623 100644
|
| --- a/sky/framework/components/drawer.dart
|
| +++ b/sky/framework/components/drawer.dart
|
| @@ -134,13 +134,13 @@ class Drawer extends AnimatedComponent {
|
| onGestureFlingStart: controller.handleFlingStart
|
| );
|
|
|
| - Material content = new Material(
|
| - key: 'Content',
|
| - style: _contentStyle,
|
| - inlineStyle: contentInlineStyle,
|
| - children: children,
|
| - level: level
|
| - );
|
| + Node content = new StyleNode(
|
| + new Material(
|
| + key: 'Content',
|
| + inlineStyle: contentInlineStyle,
|
| + children: children,
|
| + level: level),
|
| + _contentStyle);
|
|
|
| return new EventTarget(
|
| new Container(
|
|
|