Add placeholder text to the Input component

R=rafaelw@chromium.org

Review URL: https://codereview.chromium.org/996213004
This commit is contained in:
Adam Barth 2015-03-11 11:30:28 -07:00
parent c62170006f
commit bc6fb30f01

View File

@ -86,8 +86,9 @@ class StocksApp extends App {
]
);
Node title = _isSearching ?
new Input(focused: true) : new Text('I am a stocks app');
Node title = _isSearching
? new Input(focused: true, placeholder: 'Search stocks')
: new Text('I am a stocks app');
var toolbar = new Toolbar(
children: [