| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 import '../fn.dart'; | 5 import '../fn.dart'; |
| 6 | 6 |
| 7 class MenuDivider extends Component { | 7 class MenuDivider extends Component { |
| 8 static final Style _style = new Style(''' | 8 static final Style _style = new Style(''' |
| 9 margin: 8px 0; | 9 margin: 8px 0; |
| 10 border-bottom: 1px solid rgba(0, 0, 0, 0.12);''' | 10 border-bottom: 1px solid rgba(0, 0, 0, 0.12);''' |
| 11 ); | 11 ); |
| 12 | 12 |
| 13 MenuDivider({ Object key }) : super(key: key); | 13 MenuDivider({ Object key }) : super(key: key); |
| 14 | 14 |
| 15 Node build() { | 15 UINode build() { |
| 16 return new Container( | 16 return new Container( |
| 17 style: _style | 17 style: _style |
| 18 ); | 18 ); |
| 19 } | 19 } |
| 20 } | 20 } |
| OLD | NEW |