benPesso

Results 13 comments of benPesso

@AndreHaueisen So what's up with this issue? Is the package going to continue using routes or switch to overlays? This behavior is still broken when the users are swiping/tapping back...

> Same issue > > Edit: Fixed with `_flushbar?.dismiss();` before `Navigator.pop` @sayhicoelho That only works if you control the popping itself. If you're using a "standard" app bar, for example,...

> @amadeu01 > > Maybe he was busy and forgot to answer you. I was able to get the `dismiss() ` function to work. > > You basically define a...

You're referencing the wrong object in your `dismiss` call (missing an underscore): ```dart onTap: (flushbar) { flushbar.dismiss(); // should be: _flushbar.dismiss(); }, ``` Next time, by the way, please use...

What do you mean by turning it off? Not to have it animated at all, or dismissing it before the `duration` expires? To "turn off the animation" (I.e. to not...

I have a ```LittleHelper``` class that I use to display errors, alerts, dialogs, and other such repetitive things. I've implemented it with a factory, so that it gets the `BuildContext`...

@pedromassangocode You don't necessarily want to set it to zero. As I wrote, it can also happen if the duration is set to something other than zero, like 60 milliseconds....

Any progress on this issue? Seems to be stale for quite a while now. 😐

I can confirm that this issue is present in iOS: The above is in the span of 3 minutes. Flutter Doc says it's all good. ``` [✓] Flutter (Channel stable,...