Rijaldi Alfauzan
Results
2
comments of
Rijaldi Alfauzan
@pingxiaodou I updated my flutter to 1.12.13 hotfix-8 seems fix the problem, maybe you should try
when first time widget rendered the slider key states not yet set, so the currentState in sliderKey.currentState.currentPage is null. here's my solution: `sliderKey.currentState != null ? sliderKey.currentState.currentPage : 0` correct...