swipeable icon indicating copy to clipboard operation
swipeable copied to clipboard

Background not visible if direction = SwipeDirection.endToStart

Open krille-chan opened this issue 3 years ago • 0 comments

Set

Container(
                                          decoration: BoxDecoration(
                                              borderRadius: BorderRadius.all(
                                                Radius.circular(8.0),
                                              ),
                                              color: Colors.white),
                                          child: ListTile(
                                            title: Text('text'),
                                          ),
                                        ),

And everything works fine with SwipeDirection.startToEnd. Changing it to SwipeDirectionEndToStart makes this invisible.

krille-chan avatar Oct 28 '20 06:10 krille-chan