728x90

원인
CarouselSlider의 매개 변수 'onPageChanged'가 정의되지 않습니다.

CarouselSlider(items: images, onPageChanged : (index){

            setState(() {

              _currentPage = index;

              _currentKeyword = keywords[_currentPage];

            });
          },)

 

 

해결방법
CarouselSlider의 options를 통하여 해결 가능합니다.

CarouselSlider(items: images, options: CarouselOptions(

             onPageChanged: (index, reason) {

              setState(() {

                _currentPage = index;

                _currentKeyword = keywords[_currentPage];

              });
        }),
      ),

 

728x90

+ Recent posts