인프런 커뮤니티 질문&답변
pubspec.yaml 문제
작성
·
773
답변 15
8
임동훈
질문자
CarouselSlider( items: images,options: CarouselOptions(
onPageChanged: (index, reason) {
setState(() {
_currntPage = index;
_currntKeyword = keywords[_currntPage];
});
},
),
),
이렇게 넣으면됩니다.
1
0
0
0
0
0
0
0
임동훈
질문자
version: 1.0.0+1
environment:
sdk: ">=2.7.0 <3.0.0"
dependencies:
flutter:
sdk: flutter
carousel_slider: ^2.0.0 << 이렇게 넣어줬습니다 2.1.0 도 안되는거같아요
# The following adds the Cupertino Icons font to your application.
# Use with the CupertinoIcons class for iOS style icons.
cupertino_icons: ^0.1.3
dev_dependencies:
flutter_test:
sdk: flutter
0
0
0
임동훈
질문자
Carouselslider(
items: images, onPageChanged: (index) {
setState(() {
_currntPage = index;
_currntKeyword = keywords[_currntPage];
});
},
)
0
0
0





