chip은 속성, text, 등을 나타내는 압축 요소이다.
null이 아닌 onDeleted 를 제공하면 chip 삭제 버튼이 포함된다.
chip은 이렇게 무언가를 선택하여 옵션 범위를 조정하거나 할 때 사용한다.
example)
build(BuildContext context) {
return MaterialApp(
title: 'Choice Chips Demo',
debugShowCheckedModeBanner: false,
home: Scaffold(
appBar: AppBar(
title: Text('Choice Chips Demo'),
),
body: Center(
child: Column(
children: [
ChoiceChip(
label: Text('Choice 1'),
selected: false,
),
ChoiceChip(
label: Text('Choice 2'),
selected: false,
),
ChoiceChip(
label: Text('Choice 3'),
selected: false,
),
ChoiceChip(
label: Text('Choice 4'),
selected: false,
),
],
),
),
),
);
}
Widget
Out Put