원인
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]; }); |
'Flutter' 카테고리의 다른 글
system UI isn't responding 이란? (0) | 2021.05.10 |
---|---|
Navigator operation requested with a context that does not include a Navigator. (0) | 2021.04.30 |
visual studio code sdkmanager settign (0) | 2021.04.30 |
Flutter 안드로이드 스튜디오 사용 (0) | 2021.04.27 |
Why Flutter? (0) | 2021.04.27 |