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
Is your feature request related to a problem? Please describe.
I want to be able to control what screen is seen using a controller, I can activate it with a button or a timer function, the thing is that I want to have a controller.
Describe the solution you'd like
final PageController pageController = PageController();
IntroductionScreen(
pageController: pageController
...
)
pageController.setPage(1) pageController.next()
make it so that the counter can be sent to the parent as a parameter, so we have access to the controller.
thanks.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
I want to be able to control what screen is seen using a controller, I can activate it with a button or a timer function, the thing is that I want to have a controller.
Describe the solution you'd like
pageController.setPage(1)
pageController.next()
make it so that the counter can be sent to the parent as a parameter, so we have access to the controller.
thanks.
The text was updated successfully, but these errors were encountered: