0

I am looking to implement iOS type delete in flutter. Please see image below. Is there a widget which provides this functionality? Or do i need to implement it myself? Image here

Vaibhav
  • 3
  • 3

1 Answers1

1

Maybe the widget Dismissible can help you. But if you search a ready solution, here a package called flutter_slidable

isacjunior
  • 462
  • 3
  • 3
  • I am looking for something which has the red minus button delete implementation. I do not think these widget have that. – Vaibhav Aug 10 '20 at 14:48
  • can u specify which part of the behaviour u feel missing from the Dismissible widget? – VLXU Aug 10 '20 at 15:22
  • If it’s only the icon, u can set it to show that icon instead – VLXU Aug 10 '20 at 15:23
  • Basically, what i want is when I tap on a button, i want the red minus button to appear on the left of the tile. and then i can tap on it to remove the particular tile. – Vaibhav Aug 10 '20 at 16:44