Flutter CarouselView and Indicator with CarouselController
I am trying to implement a carousel indicator with my CarouselView but i am unable to get the current index. My code is as below: class WelcomeScreen extends ConsumerStatefulWidget { const WelcomeScreen({super.key}); @override ConsumerState<WelcomeScreen> createState() => WelcomeScreenState(); } class WelcomeScreenState…