I want to add a filter option button without adding a search bar.
ScreenShot
CodePudding user response:
You can do like this
InkWell(
onTap: () =>
child: const Icon(
Icons.tune,
color: Colors.grey,
),
),
CodePudding user response:
Make use of IconButton
like below
IconButton(
icon: Icon(Icons.tune),
onPressed: () {},
)