Closed karthikreddi closed 3 years ago
onDone
and onSkip
callbacks need to be provided.
OnBoard(
onBoardData: onBoardData ,
pageController: pageController,
onSkip: () {
print('skipped');
},
onDone: () {
print('done tapped');
},
)
skipButton
and nextButton
widgets.onSkip
callback is now not a required field but either onSkip
callback or skipButton
needs to be provided to the OnBoard widget, else it will throw an exception.onDone
callback is now not a required field but either onDone
callback or nextButton
needs to be provided to the OnBoard widget, else it will throw an exception.Exception:
@karthikreddi You can see the changes in v1.0.1
Overflow issue for the smaller devices is fixed in V1.0.2
am using V2.0.0 and issue still persist, please how do i resolve this??
Describe the bug
The relevant error-causing widget was OnBoard lib/…/intro_screens/intro_slider_page_8.dart:12
Expected behavior
Remove them as there is skipButton and nextButton where the same can be achieved.