skip to Main Content

Android Studio – i am using an ImageSlideshow in my flutter app but i need to add some icons on the slide. something like the image below?

Center( child: Container( height: height * 0.3, width: width * 0.8, decoration: BoxDecoration( borderRadius: BorderRadius.circular(10), ), child: ImageSlideshow( indicatorColor: HexColor('#FFA300'), onPageChanged: (value) {}, autoPlayInterval: 3000, isLoop: true, children: [ Image.asset( 'assets/images/sample1.png', fit: BoxFit.cover, ), Image.asset( 'assets/images/sample2.png', fit: BoxFit.cover, ), Image.asset(…

VIEW QUESTION
Back To Top
Search