| // Copyright 2015 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| import 'package:flutter/material.dart'; |
| class ChipDemo extends StatefulWidget { |
| _ChipDemoState createState() => new _ChipDemoState(); |
| class _ChipDemoState extends State<ChipDemo> { |
| bool _showBananas = true; |
| Widget build(BuildContext context) { |
| List<Widget> chips = <Widget>[ |
| avatar: new CircleAvatar(child: new Text('B')), |
| label: new Text('Blueberry') |
| label: new Text('Bananas'), |
| onDeleted: _deleteBananas |
| toolBar: new ToolBar(center: new Text("Chips")), |
| children: chips.map((Widget widget) { |
| child: new Center(child: widget) |