-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
touchable swipe not working #5
Comments
The same problem @pzentenoe, please how to fix it |
══╡ EXCEPTION CAUGHT BY WIDGETS LIBRARY ╞═══════════════════════════════════════════════════════════ |
@mamonraab Mate, you should use the card_swiper plugin, It is forked with null safety from flutter_swiper. Same things, but works. |
thanks bro i end up doing my own slider , but i will give card_swiper a try |
I'm sorry guys I've been too busy in my work I haven't been able to evolve this package, for now I see it difficult, can you send me a pull request, I'll be happy to review it. |
hello , iam using flutter_card_swipper:^0.4.0
swiper when try to swipe using fingers or mouse not working just the control or pages click is work
here is my swiper code
`
Container( color: Colors.white60,
height: MediaQuery.of(context).size.height * 0.3,
child:Swiper(itemCount: _sliddata.length,
control: new SwiperControl(
color: Colors.red
),
autoplay: true,
itemBuilder: (context, index) {
return imgbuildr(index);
},
pagination: new SwiperPagination(
margin: new EdgeInsets.all(5.0),
builder: new DotSwiperPaginationBuilder(
color: Colors.grey, activeColor: Colors.red)
`
The text was updated successfully, but these errors were encountered: