You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Showcase widget should have a disableBarrierInteraction property as for ShowCaseWidget.
The onTap of the barrier get a the default ShowCaseWidget parameter (false) so if the user click on the barrier the showcase closes since the onTap launch _nextIfAny() that closes the widget.
MoreOther since all this is in the State class that is private no way to overwrite the class...
Would it be possible to add this proposerty and juste change one line of code :
if (!showCaseWidgetState.disableBarrierInteraction) {. WOULD BECOME : if (!widget.disableBarrierInteraction) {
The text was updated successfully, but these errors were encountered:
Hi @FabriceACohen, please have a look at an already open PR #392 that I believe addresses the same issue that you have mentioned here. Feel free to let me know if that's not the case. Also, there is a similar issue (#387 ) already open.
Showcase widget should have a disableBarrierInteraction property as for ShowCaseWidget.
The onTap of the barrier get a the default ShowCaseWidget parameter (false) so if the user click on the barrier the showcase closes since the onTap launch _nextIfAny() that closes the widget.
MoreOther since all this is in the State class that is private no way to overwrite the class...
Would it be possible to add this proposerty and juste change one line of code :
if (!showCaseWidgetState.disableBarrierInteraction) {. WOULD BECOME : if (!widget.disableBarrierInteraction) {
The text was updated successfully, but these errors were encountered: