// Copyright 2014 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // Template: dev/snippets/config/templates/stateful_widget_scaffold_center.tmpl // // Comment lines marked with "▼▼▼" and "▲▲▲" are used for authoring // of samples, and may be ignored if you are just exploring the sample. // Flutter code sample for DeletableChipAttributes.onDeleted // //*************************************************************************** //* ▼▼▼▼▼▼▼▼ description ▼▼▼▼▼▼▼▼ (do not modify or remove section marker) // This sample shows how to use [onDeleted] to remove an entry when the // delete button is tapped. //* ▲▲▲▲▲▲▲▲ description ▲▲▲▲▲▲▲▲ (do not modify or remove section marker) //*************************************************************************** import 'package:flutter/material.dart'; void main() => runApp(const MyApp()); /// This is the main application widget. class MyApp extends StatelessWidget { const MyApp({Key? key}) : super(key: key); static const String _title = 'Flutter Code Sample'; @override Widget build(BuildContext context) { return MaterialApp( title: _title, home: Scaffold( appBar: AppBar(title: const Text(_title)), body: const Center( child: MyStatefulWidget(), ), ), ); } } //***************************************************************************** //* ▼▼▼▼▼▼▼▼ code-preamble ▼▼▼▼▼▼▼▼ (do not modify or remove section marker) class Actor { const Actor(this.name, this.initials); final String name; final String initials; } class CastList extends StatefulWidget { const CastList({Key? key}) : super(key: key); @override State createState() => CastListState(); } class CastListState extends State { final List _cast = [ const Actor('Aaron Burr', 'AB'), const Actor('Alexander Hamilton', 'AH'), const Actor('Eliza Hamilton', 'EH'), const Actor('James Madison', 'JM'), ]; Iterable get actorWidgets sync* { for (final Actor actor in _cast) { yield Padding( padding: const EdgeInsets.all(4.0), child: Chip( avatar: CircleAvatar(child: Text(actor.initials)), label: Text(actor.name), onDeleted: () { setState(() { _cast.removeWhere((Actor entry) { return entry.name == actor.name; }); }); }, ), ); } } @override Widget build(BuildContext context) { return Wrap( children: actorWidgets.toList(), ); } } //* ▲▲▲▲▲▲▲▲ code-preamble ▲▲▲▲▲▲▲▲ (do not modify or remove section marker) //***************************************************************************** /// This is the stateful widget that the main application instantiates. class MyStatefulWidget extends StatefulWidget { const MyStatefulWidget({Key? key}) : super(key: key); @override State createState() => _MyStatefulWidgetState(); } /// This is the private State class that goes with MyStatefulWidget. class _MyStatefulWidgetState extends State { //******************************************************************** //* ▼▼▼▼▼▼▼▼ code ▼▼▼▼▼▼▼▼ (do not modify or remove section marker) @override Widget build(BuildContext context) { return const CastList(); } //* ▲▲▲▲▲▲▲▲ code ▲▲▲▲▲▲▲▲ (do not modify or remove section marker) //******************************************************************** }