I am trying to use Dismissible
in a Container
with BorderRadius
but the onDismissed
Animation don't work properly, because the back ground don't have the same shape.
I have tried this:
Stack(
overflow: Overflow.clip,
children: <Widget>[
MyBackgroundWidget(), // instead of background
Dismissible(
child: MyForegroundWidget(),
// no background
)
],
);