Skip to content

Instantly share code, notes, and snippets.

View zohaib304's full-sized avatar
:octocat:
Working

Zohaib zohaib304

:octocat:
Working
View GitHub Profile
@zohaib304
zohaib304 / choice_chip.dart
Created March 18, 2021 00:35
Flutter Choice Chips
class _MyChoiceChipState extends State<MyChoiceChip> {
// List<ChoiceChipData> chips = ChoiceChipAll.all;
List<String> _options = [
'9th Class',
'10th Class',
'Fsc Part 1',
'Fsc Part 2',
'Entry test'
];
int _selectedIndex;