Home > front end >  How to give InkResponse a rectangular highlight?
How to give InkResponse a rectangular highlight?

Time:10-18

I need to make the InkResponse Widget to have a rectangular highlight on click, How could i do so?

     InkResponse(
                highlightColor: Colors.amber,
                onTap: () async {}
    ),

CodePudding user response:

You can use highlightShape parameter of InkResponse like highlightShape: BoxShape.rectangle,.

  InkResponse(
            highlightColor: Colors.amber,
            highlightShape: BoxShape.rectangle,
            onTap: () async {},
          ),

Does it solve in your case?
For more, visit InkResponse

CodePudding user response:

While both can be customized, it's easier to:

  • Use InkWell for a rectangular ripple effect.
  • Use InkResponse for a circular ripple effect.
  • Related