-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchoice_chips.dart
54 lines (49 loc) · 1.47 KB
/
choice_chips.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import 'package:flutter/material.dart';
class Choice {
Choice({required this.title, required this.icon});
final String title;
final IconData icon;
bool selected = false;
}
class ChoiceChips extends StatefulWidget {
const ChoiceChips({super.key});
@override
State<ChoiceChips> createState() => _ChoiceChipsState();
}
class _ChoiceChipsState extends State<ChoiceChips> {
List<Choice> choices = [
Choice(title: 'Home', icon: Icons.home),
Choice(title: 'Search', icon: Icons.search),
Choice(title: 'Settings', icon: Icons.settings),
Choice(title: "Activity", icon: Icons.place_rounded)
];
@override
Widget build(BuildContext context) {
return SingleChildScrollView(
scrollDirection: Axis.horizontal,
child: Row(
children: [
for (var choice in choices)
Padding(
padding: const EdgeInsets.all(8.0),
child: ChoiceChip(
selectedColor: Colors.blue.shade300,
backgroundColor: Colors.grey.shade300,
avatar: Icon(choice.icon),
label: Padding(
padding: const EdgeInsets.all(8.0),
child: Text(choice.title),
),
selected: choice.selected,
onSelected: (bool selected) {
setState(() {
choice.selected = selected;
});
},
),
)
],
),
);
}
}