Home > Mobile >  How to add search filter option like this image in flutter
How to add search filter option like this image in flutter

Time:08-10

I want to add a filter option button without adding a search bar.

ScreenShot

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: () {},
)
  • Related