I'm trying to create an outlined filter chip in Flutter.
I can create a standard filter chip using the following code but I can't see a way to access the outlined version as shown in the image.
Is there a way to modify the standard chip to give the outline version?
FilterChip(
label: Text("text"),
onSelected: (bool value) {print("selected");},
),
I have it working now. Here is the code:
This post also helped me discover the StadiumBorder.