flutter_slidable
flutter_slidable copied to clipboard
Programmatically open the slide in flutter_slidable package
The current implementation of the flutter_slidable package allows users to open a slide by swiping the item in the list. However, there is no straightforward method to open the slide programmatically in response to specific events or triggers.
You can use the Slidable.of(context)?.openStartActionPane() to open it. The BuildContext passed in here should be a BuildContext beneath the Slidable widget
Great but if I have SlidableS in a ListView how can I address one from its key ?