flutter-carousel-pro icon indicating copy to clipboard operation
flutter-carousel-pro copied to clipboard

How to remove margin/padding top and bottom?

Open XinwenCheng opened this issue 4 years ago • 0 comments

Hi @jlouage ,

Do you still support this plugin? I have a question about how to remove margin/padding top and bottom of image. My code is:

Container(
  alignment: Alignment.topCenter,
  decoration: BoxDecoration(color: Colors.red),
  child: Carousel(
    dotSize: 4,
    dotSpacing: 8,
    dotBgColor: Colors.transparent,
    autoplayDuration: Duration(seconds: 5),
    images: carouselImages,
    showIndicator: true,
    boxFit: BoxFit.contain,
  ),
),

Then please refer to following screenshot, as you can see there's red background indicate margin/padding top and bottom: flutter_01

How could I remove it? Thanks in advance!

XinwenCheng avatar May 13 '20 03:05 XinwenCheng