Home > Software engineering >  How to add multiple options to the Dismissible Widget in Flutter like Image below
How to add multiple options to the Dismissible Widget in Flutter like Image below

Time:01-07

Here is referecne to the title

I've tried the confirm dismiss parameter in the Dismiss widget but it's only a dialog that is recommended.

CodePudding user response:

The built-in Dismissible widget does not support that.

You can either build it yourself using Row, Icon and GestureDetector, or you can consider using this package: demo gif taken from the package

  • Related