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
Sometimes it might be useful to disable the "back" function on the intro screen, so once the user have already finished with one slide he won't be able to come back.
As a suggestion, this could be done like on the original lib:
/* Add a navigation policy to define when users can go forward/backward */setNavigationPolicy(newNavigationPolicy() {
@OverridepublicbooleancanGoForward(intposition) {
returntrue;
}
@OverridepublicbooleancanGoBackward(intposition) {
returnfalse;
}
});
The text was updated successfully, but these errors were encountered:
Sometimes it might be useful to disable the "back" function on the intro screen, so once the user have already finished with one slide he won't be able to come back.
As a suggestion, this could be done like on the original lib:
The text was updated successfully, but these errors were encountered: