I have created a snackbar with a button inside snacbar named 'undo' and also i have set snackbar duration property to 2 seconds but the snackbar is not hiding after to 2 seconds if i don't use the 'undo' button in snacbar action the duration property is working but with this button it is not working
I tried to hide snackbar automatically after 2 second with a button inside it called 'undo' or 'dismiss' but it is not hiding and here is the sample code : ScaffoldMessenger.of(context).showSnackBar(SnackBar( content: const Text( 'the item was successfully deleted!'), action: SnackBarAction( label: 'undo', onPressed: () async { await SqlHelper.createItemWithID( deletedItem![0]['id'], deletedItem![0]['title'], deletedItem![0]['description'], deletedItem![0]['createdAt']); counterFordeleteditem -= 1; await RecyclebinHHHHHelper.deleteItemm( deletedItem![0]['id']);
refresh();
},
),
));
Future.delayed(
Duration(seconds:2), () {
ScaffoldMessenger.of(context)
.hideCurrentSnackBar();
});