Home > database >  flutter: how to make a little notification which is like a feedback?
flutter: how to make a little notification which is like a feedback?

Time:10-01

I'm trying to make an app on android which do something on pushing a button. After that, I would like to send a feedback for the user about the event, with a little notification which has animation easeinout with a simple text like this at the bottom of the screen: notification

Is there any simple way to make that with a built-in widget?

CodePudding user response:

A snackbar provides this kind of notification with a straight forward implementation.

  • Related