SlidableAction height - Padding to background of SlidableAction
Using the latest version flutter_slidable: ^2.0.0 I am unable to add padding to the background of the slidable. I was able to do this in version ^0.6.0
I am updating the package and this is what I have

This is what I would like to have

I am unable to add padding so that the background height is affected giving me the wanted result.
I am dealing with the same issue.
can use Stack, example:
After some deeper testing I found out that SlidableAction was not really the culprit of the problem. I found out that Cards have a margin property which is not set to 0 by default, that caused the difference in size of both widgets. I set the margin to 2.0 and now both widgets have the same size.
But I also believe the margin property would be a nice addition to SlidableActions. I was working on a fork to add height control to SlidableActions but I'll revert my changes and try to implement margin to the OutlinedButton of the SlidableAction, to work similar to the Cards.
Are there any updates on this?
I have opened a PR to "fix" this "issue". Feel free to endorse it if you want to.
PR #412.
Awesome, just need to wait for this pr to get merged then ig