Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(155)

Side by Side Diff: sky/framework/components/menu_divider.dart

Issue 993033003: Move example fn widgets into sky/framework/components (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « sky/framework/components/material.dart ('k') | sky/framework/components/menu_item.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 part of widgets; 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
3 // found in the LICENSE file.
4
5 import '../fn.dart';
2 6
3 class MenuDivider extends Component { 7 class MenuDivider extends Component {
4 8 static final Style _style = new Style('''
5 static Style _style = new Style('''
6 margin: 8px 0; 9 margin: 8px 0;
7 border-bottom: 1px solid rgba(0, 0, 0, 0.12);''' 10 border-bottom: 1px solid rgba(0, 0, 0, 0.12);'''
8 ); 11 );
9 12
10 MenuDivider({ Object key }) : super(key: key); 13 MenuDivider({ Object key }) : super(key: key);
11 14
12 Node build() { 15 Node build() {
13 return new Container( 16 return new Container(
14 style: _style 17 style: _style
15 ); 18 );
16 } 19 }
17 } 20 }
OLDNEW
« no previous file with comments | « sky/framework/components/material.dart ('k') | sky/framework/components/menu_item.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698