Closed anilthummar closed 2 months ago
@anilthummar for now if you have a big number of pages you properly should use a scrolling effect
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions
@Milad-Akarie ,
What will hapeend if my count more then 50 and more , it will be set proper UI in widgets in both side - left and right ? below is my code Please suggest me how to fixed right side alignment issue.
Widget dotIndicator() => Row( mainAxisAlignment: MainAxisAlignment.center, // Align dots at the ends children: [ Flexible( // Use Flexible to prevent overflow child: AnimatedSmoothIndicator( activeIndex: currentIndex, count: widget.userBannersList!.length, effect: const ExpandingDotsEffect( dotHeight: 10, dotWidth: 10, dotColor: Colors.white, activeDotColor: MyColors.ORANGE_COLOR, spacing: 4.0, // Adjust spacing as needed ), ), ), ], );