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

Unified Diff: sky/examples/stocks2/lib/stock_app.dart

Issue 1157243011: Add overlays back to stocks2. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/examples/stocks2/lib/stock_app.dart
diff --git a/sky/examples/stocks2/lib/stock_app.dart b/sky/examples/stocks2/lib/stock_app.dart
index cb65d858fe2112840e67143e9306803fac902c27..d26eef43a50d9a867f9c3e79f2376d6538ae5fdb 100644
--- a/sky/examples/stocks2/lib/stock_app.dart
+++ b/sky/examples/stocks2/lib/stock_app.dart
@@ -191,30 +191,32 @@ class StocksApp extends App {
// _searchBarStyle);
}
- // void addMenuToOverlays(List<UINode> overlays) {
- // if (_menuController == null)
- // return;
- // overlays.add(new ModalOverlay(
- // children: [new StockMenu(
- // controller: _menuController,
- // autorefresh: _autorefresh,
- // onAutorefreshChanged: _handleAutorefreshChanged
- // )],
- // onDismiss: _handleMenuHide));
- // }
+ void addMenuToOverlays(List<UINode> overlays) {
+ // if (_menuController == null)
+ // return;
+ // overlays.add(new ModalOverlay(
+ // children: [new StockMenu(
+ // controller: _menuController,
+ // autorefresh: _autorefresh,
+ // onAutorefreshChanged: _handleAutorefreshChanged
+ // )],
+ // onDismiss: _handleMenuHide));
+ }
UINode build() {
- // List<UINode> overlays = [];
- // addMenuToOverlays(overlays);
- return new Scaffold(
- toolbar: _isSearching ? buildSearchBar() : buildToolBar()
- // ,
- // body: new Stocklist(stocks: _stocks, query: _searchQuery),
- // floatingActionButton: new FloatingActionButton(
- // content: new Icon(type: 'content/add_white', size: 24), level: 3),
- // drawer: _drawerShowing ? buildDrawer() : null,
- // overlays: overlays
- );
+ List<UINode> overlays = [
+ new Scaffold(
+ toolbar: _isSearching ? buildSearchBar() : buildToolBar()
+ // ,
+ // body: new Stocklist(stocks: _stocks, query: _searchQuery),
+ // floatingActionButton: new FloatingActionButton(
+ // content: new Icon(type: 'content/add_white', size: 24),
+ // level: 3),
+ // drawer: _drawerShowing ? buildDrawer() : null
+ ),
+ ];
+ addMenuToOverlays(overlays);
+ return new StackContainer(children: overlays);
}
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698