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

Side by Side Diff: sky/examples/stocks-fn/stockrow.dart

Issue 994553003: Ensure that sky Nodes are in the document when didMount() is fired. Refactor FixedHeightScrollable … (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: typo 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/examples/stocks-fn/stocklist.dart ('k') | sky/framework/fn.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 stocksapp; 1 part of stocksapp;
2 2
3 class StockRow extends MaterialComponent { 3 class StockRow extends MaterialComponent {
4 4
5 Stock stock; 5 Stock stock;
6 6
7 static Style _style = new Style(''' 7 static Style _style = new Style('''
8 transform: translateX(0); 8 transform: translateX(0);
9 max-height: 48px;
10 display: flex; 9 display: flex;
11 align-items: center; 10 align-items: center;
12 border-bottom: 1px solid #F4F4F4; 11 border-bottom: 1px solid #F4F4F4;
13 padding-top: 16px; 12 padding-top: 16px;
14 padding-left: 16px; 13 padding-left: 16px;
15 padding-right: 16px; 14 padding-right: 16px;
16 padding-bottom: 20px;''' 15 padding-bottom: 20px;'''
17 ); 16 );
18 17
19 static Style _tickerStyle = new Style(''' 18 static Style _tickerStyle = new Style('''
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 ]; 63 ];
65 64
66 children.add(super.render()); 65 children.add(super.render());
67 66
68 return new Container( 67 return new Container(
69 style: _style, 68 style: _style,
70 children: children 69 children: children
71 ); 70 );
72 } 71 }
73 } 72 }
OLDNEW
« no previous file with comments | « sky/examples/stocks-fn/stocklist.dart ('k') | sky/framework/fn.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698