본문 바로가기
flutter

[flutter] 이미지 슬라이드 - CarouselSlider

by 슈크림 붕어빵 2023. 7. 11.

CarouselSlider를 사용하면 이미지 슬라이드를 구현할 수 있다. 

CarouselSlider(
                  options: CarouselOptions(
                    // height: 200,
                    aspectRatio: 1 / 1,
                    autoPlay: false,
                    enlargeCenterPage: true,
                    enableInfiniteScroll: false,
                  ),
                  items: review.image.map((imageUrl) {
                    return Container(
                      child: Image.network(
                        imageUrl,
                        fit: BoxFit.cover,
                        width: double.infinity,
                      ),
                    );
                  }).toList(),
                )

이런 식으로 표시된다. 옆으로 넘길 수 있다.