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

Side by Side Diff: sky/examples/stocks-fn/stocksapp.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/examples/stocks-fn/stockrow.dart ('k') | sky/framework/components/button.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 library stocksapp; 1 library stocksapp;
2 2
3 import '../../framework/fn.dart'; 3 import '../../framework/fn.dart';
4 import '../../framework/components/drawer.dart';
5 import '../../framework/components/drawer_header.dart';
6 import '../../framework/components/fixed_height_scrollable.dart';
7 import '../../framework/components/floating_action_button.dart';
8 import '../../framework/components/icon.dart';
9 import '../../framework/components/material.dart';
10 import '../../framework/components/menu_divider.dart';
11 import '../../framework/components/menu_item.dart';
12 import '../../framework/components/toolbar.dart';
4 import '../data/stocks.dart'; 13 import '../data/stocks.dart';
5 import '../fn/widgets/widgets.dart';
6 import 'dart:math'; 14 import 'dart:math';
7 15
8 part 'stockarrow.dart'; 16 part 'stockarrow.dart';
9 part 'stocklist.dart'; 17 part 'stocklist.dart';
10 part 'stockrow.dart'; 18 part 'stockrow.dart';
11 19
12 class StocksApp extends App { 20 class StocksApp extends App {
13 21
14 DrawerAnimation _drawerAnimation = new DrawerAnimation(); 22 DrawerAnimation _drawerAnimation = new DrawerAnimation();
15 23
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 key: 'Content', 107 key: 'Content',
100 style: _style, 108 style: _style,
101 children: [toolbar, new Stocklist(stocks: _sortedStocks)] 109 children: [toolbar, new Stocklist(stocks: _sortedStocks)]
102 ), 110 ),
103 fab, 111 fab,
104 drawer, 112 drawer,
105 ] 113 ]
106 ); 114 );
107 } 115 }
108 } 116 }
OLDNEW
« no previous file with comments | « sky/examples/stocks-fn/stockrow.dart ('k') | sky/framework/components/button.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698