cmdrootaccess / another-flushbar

A flexible widget for user notification. Customize your text, button, duration, animations and much more. For Android devs, it is made to replace Snackbars and Toasts.
https://pub.dev/packages/another_flushbar
MIT License
145 stars 88 forks source link

Do not use BuildContexts across async gaps. #94

Closed phpmaple closed 1 year ago

phpmaple commented 1 year ago

In Stateless Widget, in async action, it will show warning

robsonsilv4 commented 1 year ago

You can check if context is mounted before show the dialogs:

if (context.mounted) {
  // show dialog
}