| Index: sky/examples/stocks-fn/stocksapp.dart
|
| diff --git a/sky/examples/stocks-fn/stocksapp.dart b/sky/examples/stocks-fn/stocksapp.dart
|
| index 0f806162de8d3158ec36e4caba43ea154cda16f0..83e3c978d365892acb13eed8faeaedfb336c0672 100644
|
| --- a/sky/examples/stocks-fn/stocksapp.dart
|
| +++ b/sky/examples/stocks-fn/stocksapp.dart
|
| @@ -109,7 +109,7 @@ class StocksApp extends App {
|
| new Icon(key: 'menu', style: _iconStyle,
|
| size: 24,
|
| type: 'navigation/menu_white')
|
| - ..events.listen('click', _drawerAnimation.toggle),
|
| + ..events.listen('gesturetap', _drawerAnimation.toggle),
|
| new Container(
|
| style: _titleStyle,
|
| children: [title]
|
| @@ -117,7 +117,7 @@ class StocksApp extends App {
|
| new Icon(key: 'search', style: _iconStyle,
|
| size: 24,
|
| type: 'action/search_white')
|
| - ..events.listen('click', _handleSearchClick),
|
| + ..events.listen('gesturetap', _handleSearchClick),
|
| new Icon(key: 'more_white', style: _iconStyle,
|
| size: 24,
|
| type: 'navigation/more_vert_white')
|
|
|