Closed dominic-schmid closed 1 year ago
I noticed that by adding a leading Text/IconButton to the OnBoardingSlider, the widget is visibule but not clickable unless I am on the last screen of the onboarding.
return OnBoardingSlider( leading: IconButton( onPressed: () => showSnackBar('test', context), icon: const Icon(Icons.abc), ), skipTextButton: Text( 'Skip', style: const TextStyle( fontSize: 16, fontWeight: FontWeight.w600, ), ), ...
Solved with version 1.0.9
I noticed that by adding a leading Text/IconButton to the OnBoardingSlider, the widget is visibule but not clickable unless I am on the last screen of the onboarding.