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
@rlee1990 I think a way that this could be done is to provide your own actionBuilder widget, and here you will receive a CalloutActionController controller. The controller has some properties
/// The current target's index.
final int index;
/// The total number of targets.
final int pages;
/// Convenience getter for if we're currently on the last page.
bool get isLastPage => index + 1 == pages;
/// Convenience getter for if we're currently on the first page.
bool get isFirstPage => index == 0;
You can then check controller.isLastPage in your next button onPressed callback and handle done
Is there a way to know when the done button is pressed or when the tour is done?
The text was updated successfully, but these errors were encountered: