Flutter
[해결] CarouselSlider 중 onPageChanged 정의 되지 않습니다.
한걸음씩이라도
2021. 5. 11. 16:20
728x90
원인
CarouselSlider의 매개 변수 'onPageChanged'가 정의되지 않습니다.
CarouselSlider(items: images, onPageChanged : (index){ setState(() { _currentPage = index; _currentKeyword = keywords[_currentPage]; |
해결방법
CarouselSlider의 options를 통하여 해결 가능합니다.
CarouselSlider(items: images, options: CarouselOptions( setState(() { _currentPage = index; _currentKeyword = keywords[_currentPage]; }); |
728x90