flutter_swiper
flutter_swiper copied to clipboard
The best swiper for flutter , with multiple layouts, infinite loop. Compatible with Android & iOS.
The lower bound of "sdk: '>=2.0.0-dev.68.0 <3.0.0'" must be 2.12.0 or higher to enable null safety.
^C% ➜ juzi_flutter git:(main) ✗ flutter pub add install_plugin The current Dart SDK version is 3.0.2. Because orange depends on install_plugin any which doesn't support null safety, version solving failed....
I have been trying to create a custom carousel in Flutter that has stacked cards using the custom layout. But am unable to reverse the order of cards so the...
如题
I obtained the data list through the backend interface, and when binding the card swiper, I found that it would automatically scroll several times the first time before stopping at...
The animations works fine during debug, but when I run "flutter build apk", they does not work anymore. Pagination works, but not the animations. EDIT: Animations only works with SwiperLayout.DEFAULT....
hi, 我在滚动控件里面放了一个webView/或者imageView,发现webView/imageView会频繁创建,时间越久就会卡顿, 代码如下: Swiper( itemCount: list.length, itemBuilder: (context, index) { return WebView( initialUrl: "https://www.baidu.com/?tn=02003390_25_hao_pg", javascriptMode: JavascriptMode.unrestricted, ); }, pagination: SwiperPagination(), //轮播图片底下的指示点 control: SwiperControl(), //左右箭头导航 )
swiper滚动的时候如何可点击?现在必须停下来才能点击
Hi, I got a question in how to change the scroll decoration while using CustomLayoutOption. As the pic showed, there are three items in the swiper, and when I move...
我尝试了 `physics: const NeverScrollableScrollPhysics(),` 之后发现左右滑动被禁止了,但仍然能上下滚动。在这之后尝试了在swiper外层套了一层 `GestureDetector` 并设置了 `onVerticalDragUpdate: (detail){},` 还是没有效果。 这是我的代码: ``` Widget _Category() { return SizedBox( width: ScreenAdapter.widht(1080), height: ScreenAdapter.height(400), child: Obx(()=>GestureDetector( onVerticalDragUpdate: (detail){}, child: Swiper( physics: const NeverScrollableScrollPhysics(),...
Remove references to deprecated v1 Android embedding To ensure this plugin will work with users running the next stable version of Flutter remove references to the v1 embedding. The v1...