Created
November 19, 2020 18:14
-
-
Save Barttje/8ee920c1e095e378c4a8b6dd3950a051 to your computer and use it in GitHub Desktop.
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
import 'package:flutter/material.dart'; | |
void main() { | |
runApp(MultipleCategorySelection()); | |
} | |
class MultipleCategorySelection extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return MaterialApp( | |
theme: ThemeData( | |
primarySwatch: Colors.green, | |
visualDensity: VisualDensity.adaptivePlatformDensity, | |
), | |
home: Scaffold( | |
appBar: AppBar(title: Text("Interactive categories")), | |
body: CategorySelector( | |
["Banana", "Pear", "Apple", "Strawberry", "Pineapple"], | |
), | |
), | |
); | |
} | |
} | |
class CategorySelector extends StatefulWidget { | |
final List<String> categories; | |
CategorySelector(this.categories); | |
@override | |
_CategorySelectorState createState() => _CategorySelectorState(); | |
} | |
class _CategorySelectorState extends State<CategorySelector> { | |
final selectedCategories = List<String>(); | |
handleChange(String name, bool selected) { | |
setState(() { | |
if (selected) { | |
selectedCategories.add(name); | |
} else { | |
selectedCategories.remove(name); | |
} | |
}); | |
} | |
@override | |
Widget build(BuildContext context) { | |
return Column( | |
children: [ | |
CategoryFilter( | |
categories: widget.categories, | |
selected: selectedCategories, | |
callback: handleChange, | |
), | |
Container( | |
color: Colors.green, | |
height: 2, | |
), | |
SelectedCategories( | |
categories: selectedCategories, | |
) | |
], | |
); | |
} | |
} | |
class CategoryFilter extends StatelessWidget { | |
final List<String> categories; | |
final List<String> selected; | |
final Function(String, bool) callback; | |
const CategoryFilter({Key key, this.categories, this.selected, this.callback}) | |
: super(key: key); | |
@override | |
Widget build(BuildContext context) { | |
return Flexible( | |
child: ListView.builder( | |
itemCount: categories.length, | |
itemBuilder: (BuildContext context, int index) { | |
return CheckboxListTile( | |
value: selected.contains(categories[index]), | |
onChanged: (bool selected) { | |
callback(categories[index], selected); | |
}, | |
title: Text(categories[index]), | |
); | |
}), | |
); | |
} | |
} | |
class SelectedCategories extends StatelessWidget { | |
final List<String> categories; | |
const SelectedCategories({Key key, this.categories}) : super(key: key); | |
@override | |
Widget build(BuildContext context) { | |
return Flexible( | |
child: ListView.builder( | |
itemCount: categories.length, | |
itemBuilder: (BuildContext context, int index) { | |
return Padding( | |
padding: const EdgeInsets.all(8.0), | |
child: Text(categories[index]), | |
); | |
}), | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment