flutter_slidable icon indicating copy to clipboard operation
flutter_slidable copied to clipboard

Slideable not slide to the Middel

Open Elias177Dev opened this issue 3 years ago • 1 comments

Hey, how can i stop the Slide after the red InkWell ?

Code:

Expanded( child: Padding( padding: const EdgeInsets.only(bottom: 5.0), child: Align( alignment: Alignment.centerRight, child: InkWell( onTap: () {}, borderRadius: BorderRadius.circular(16), child: Container( alignment: Alignment.center, width: 24 * 4, // space for actionPan decoration: BoxDecoration( color: Colors.red, borderRadius: BorderRadius.only( bottomRight: Radius.circular(8), topRight: Radius.circular(8), ), ), child: Icon( Icons.delete, color: Colors.white, ), ), ), ), ), )

image

Any Ideas ?

Elias177Dev avatar Mar 28 '22 19:03 Elias177Dev

Set the ExtentRatio of the ActionPane with what you want.

letsar avatar Jul 10 '22 15:07 letsar