onPageChanged 오류나시는분들
336
0
CarouselSlider( //이미지 슬라이더를 구성할때 사용
items: images,
options: CarouselOptions(
onPageChanged: (index, reason) {
setState(() {
_currentPage = index;
_currentKeyword = keywords[_currentPage];
});
},
),
)
답변 0
336
CarouselSlider( //이미지 슬라이더를 구성할때 사용
items: images,
options: CarouselOptions(
onPageChanged: (index, reason) {
setState(() {
_currentPage = index;
_currentKeyword = keywords[_currentPage];
});
},
),
)
답변 0