You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi & thank you for your great work on Swiper. I use it & I like it but can you please explain how can I use Swiper inside PageView without set physics: NeverScrollableScrollPhysics(). Default ListView scroll inside PageView fine but when I try to Swipe it change my Page. Can you help with this issue?
Hi & thank you for your great work on Swiper. I use it & I like it but can you please explain how can I use Swiper inside PageView without set physics: NeverScrollableScrollPhysics(). Default ListView scroll inside PageView fine but when I try to Swipe it change my Page. Can you help with this issue?
Swiper( layout: SwiperLayout.STACK, fade: 1.0, itemWidth: containerWidth, itemHeight: containerHeight, itemBuilder: (context, index) { if (motivations.length >= 3) { return LargeMotivationCard( containerHeight: containerHeight, containerWidth: containerWidth, motivation: motivations[index], index: index, border: 8.0, ); } else { return Container( child: Padding( padding: const EdgeInsets.all(80.0), child: SvgPicture.asset( 'storage/assets/icons/tabs/ai.svg', color: Theme.of(context).accentColor.withOpacity(0.1), ), ), ); } }, itemCount: 7, ),
The text was updated successfully, but these errors were encountered: