JackJonson/flutter_styled_toast

Issue when toast dismis.

Hero-rafter opened this issue · 3 comments

After given time, when toast disappears, it is breaking at a point.

Screenshot 2022-05-19 at 1 53 16 PM

Refer this Screen shot.

给定时间后,当吐司消失时,它会在某个点破裂。

截图 2022-05-19 在 1 53 16 PM

请参阅此屏幕截图。

i have the same problem.Have you solved the problem?

@coderlcb Actually we didn't get proper solution but in our code, there are two params animation and reverseAnimation, so what we can do is, don't pass same for these two arguments.

animation: StyledToastAnimation.fade, reverseAnimation: StyledToastAnimation.none,

Give value of these two as different. Don't keep is same.

@coderlcb Actually we didn't get proper solution but in our code, there are two params animation and reverseAnimation, so what we can do is, don't pass same for these two arguments.

animation: StyledToastAnimation.fade, reverseAnimation: StyledToastAnimation.none,

Give value of these two as different. Don't keep is same.

thank you! that's exactly what I want!