This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
NewerOlder