Sneh Modi

Results 1 issues of Sneh Modi

``` CarouselSlider( items: widget.data.map((e) { return Builder( builder: (context) { return Container( padding: EdgeInsets.all(10), child: Center( child: Image.network( e.imageUrl, fit: BoxFit.fill, ), ), ); }, ); }).toList(), options: CarouselOptions( autoPlay:...