Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

Snackbar does not show the item name , when delete items from list in Flutter

When I delete items from a list, the snackbar does not show the item name, instead it say: "Instance of ‘IngredientList’ deleted".

Is it because .showSnackBar is desprecated?
How to fix that?

showSnackbar(context, ingredient, index){
Scaffold.of(context).showSnackBar(SnackBar(
  content:Text('$ingredient deleted'),
  action: SnackBarAction(
    label: 'UNDO'.tr(),
    onPressed: (){
      undoDelete(index,ingredient);
    },
  ),
));
}

enter image description here

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

>Solution :

The desprecated message shown because you need to use

  ScaffoldMessenger.of(context).showSnackBar(..)

And use ingredient.toString() to show instance as String. you need to override the toString on your model class

Like

class ingredient {
  final String name;
  //....
  @override
  String toString() => 'ingredient(name: $name)';
}

Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading