flutter_slidable
flutter_slidable copied to clipboard
Slideable not slide to the Middel
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, ), ), ), ), ), )

Any Ideas ?
Set the ExtentRatio of the ActionPane with what you want.