All Projects → OpenFlutter → Pulltorefresh

OpenFlutter / Pulltorefresh

Flutter相关的项目QQ:277155832 Email:2[email protected]

Programming Languages

dart
5743 projects

Projects that are alternatives of or similar to Pulltorefresh

Pullrefresh
前端, 下拉刷新
Stars: ✭ 7 (-98.46%)
Mutual labels:  pulltorefresh
React Native Easy App
Simpler storage, Simpler fetch, Simpler UI
Stars: ✭ 214 (-52.86%)
Mutual labels:  pulltorefresh
FlightBookingApp
Xamarin.Forms goodlooking UI sample using the new SwipeView.
Stars: ✭ 26 (-94.27%)
Mutual labels:  pulltorefresh
Pulltorefresh H5 Iscroll
基于IScroll5的PullToRefresh实现.。提供多套皮肤机制,便于拓展!
Stars: ✭ 56 (-87.67%)
Mutual labels:  pulltorefresh
Xrefreshview
一个万能的android下拉上拉刷新的框架,完美支持recyclerview
Stars: ✭ 1,685 (+271.15%)
Mutual labels:  pulltorefresh
RNAndroidPullToRefresh
React Native 封装基于 Ultra-Pull-To-Refresh 的下拉刷新控件
Stars: ✭ 17 (-96.26%)
Mutual labels:  pulltorefresh
Pullrefreshlayout
下拉刷新,上拉加载,真实的回弹(overscroll)效果(媲美qq),且大小只有37KB(是其他主流刷新库或回弹库的1/2,1/3,甚至是1/4),同时,自定义header和footer,可以实现任何你想的到的功能(例如:自动触发加载更多、二级刷新等)
Stars: ✭ 639 (+40.75%)
Mutual labels:  pulltorefresh
PullToRefresh
下拉刷新库可自定义刷新加载
Stars: ✭ 111 (-75.55%)
Mutual labels:  pulltorefresh
Springview
🔥 A custom view pull to refresh,support ScrollView,ListView,RecyclerView,WebView and all another views, easy to use
Stars: ✭ 1,936 (+326.43%)
Mutual labels:  pulltorefresh
XCPullToLoadMoreListView
XCPullToLoadMoreListView-下拉加载更多ListView控件(仿QQ、微信聊天对话列表控件)
Stars: ✭ 24 (-94.71%)
Mutual labels:  pulltorefresh
Refreshui
RefreshUI provide native refresh control to SwiftUI.
Stars: ✭ 95 (-79.07%)
Mutual labels:  pulltorefresh
Xrefreshlayout
【已过时,不再更新,请使用更强大的SmartRefreshLayout!】A refresh layout(无侵入下拉刷新和加载布局), can refresh RecyclerView for all LayoutManager, NestedScrollView。
Stars: ✭ 127 (-72.03%)
Mutual labels:  pulltorefresh
PullToRefresh
A PullToRefresh widget.
Stars: ✭ 510 (+12.33%)
Mutual labels:  pulltorefresh
Llmlistview
super list view for uwp
Stars: ✭ 27 (-94.05%)
Mutual labels:  pulltorefresh
AnimatedPullToRefresh-master
A Cool pull to refresh widget provided with character animation in header with user defined text. Customise your widget and show off your home screen!!
Stars: ✭ 38 (-91.63%)
Mutual labels:  pulltorefresh
Pulltozoominlistview
An Android custom ListView with pull to zoom-in and parallax effect header like Path App.
Stars: ✭ 891 (+96.26%)
Mutual labels:  pulltorefresh
goRefresh
让下拉刷新炫酷起来~轻松接入lottie动画,支持listview recyclerview scrollerview webview 。同时支持listview和recyclerview上拉加载
Stars: ✭ 24 (-94.71%)
Mutual labels:  pulltorefresh
Pulltorefresh.js
A quick and powerful plugin for your pull-to-refresh needs in your webapp.
Stars: ✭ 3,814 (+740.09%)
Mutual labels:  pulltorefresh
android-page
android 分页列表数据加载引擎,主要封装了android分页列表数据加载的各个组件,如果你有一个需要分页加载的List列表,都可以使用此框架实现。
Stars: ✭ 15 (-96.7%)
Mutual labels:  pulltorefresh
pulltorefresh
android pull to refresh library
Stars: ✭ 13 (-97.14%)
Mutual labels:  pulltorefresh

由于GIF太多(大),演示的图片可能会卡,请移步至demonstrationgif文件夹下可查看单个GIF图片

PullToRefresh pub package

Usage

Add this to your package's pubspec.yaml file:

dependencies:
  pulltorefresh_flutter: "^0.1.9"

If you want to use the default refresh image of this project (the rotated image), please download https://raw.githubusercontent.com/baoolong/PullToRefresh_Flutter/master/images/refresh.png to your images folder, and Pubspec.yaml is declared as follows.

If you want to use other images, put the image in the Images folder, declare it in the Pubspec.yaml file, and add the property refreshIconPath in the PullAndPush class.

assets:
  - images/refresh.png

Add it to your dart file:

import 'package:pulltorefresh_flutter/pulltorefresh_flutter.dart';

Example

https://github.com/baoolong/PullToRefresh_Flutter

本功能只实现基本的上下拉刷新,可在这个基础上进行改进、优化、封装,如果只是使用,可在build方法中修改ListView控件和List数组的泛型,已经兼容IOS,已经支持对下拉和上拉的分别控制

仿京东广告滑动切换

模仿的京东潮男模块的广告滑动切换,本人做的比较粗糙,大家可以在此基础上改进,比如滞后滑动,底层图片缩小等,由于没有进行屏幕适配,所以可能不同的手机会显示很丑,这是由于我在设计图片之间的Magin是用屏幕宽度减去两边距屏幕的宽度,再除以3计算的,大家可以根据需要去设定图片之间的Magin,最好固定值

Marquee(跑马灯) pub package

一个用ListView做的跑马灯,可以垂直方向滚动,也可以水平方向滚动

A Marquee widght with ListView,Can scroll vertically or horizontally

Usage

Add this to your package's pubspec.yaml file:

dependencies:
  marquee_flutter: ^0.1.3

Add it to your dart file:

import 'package:marquee_flutter/marquee_flutter.dart';

Example

https://github.com/baoolong/MarqueeWidget

采用ListView绘制,将ListView设置为不可手动滑动,然后启动Timer来回拖动,造成跑马灯的错觉

DragableGridView pub package

采用GridView +OverflowBox +Container的transform属性来完成,基本稳定,现在加入了删除功能和动画,后续持续改进,代码会越来越精简,逻辑会更清晰,学习的朋友可以拿去自己研究改进,添加新功能,下面是示例图

Usage

Add this to your package's pubspec.yaml file:

dependencies:
  dragablegridview_flutter: ^0.2.2

Add it to your dart file:

import 'package:dragablegridview_flutter/dragablegridview_flutter.dart';

And GridView dataBin must extends DragAbleGridViewBin ,Add it to your dataBin file

import 'package:dragablegridview_flutter/dragablegridviewbin.dart';

Example

https://github.com/baoolong/DragableGridview


AdsorptionView pub package

ListView吸顶控件,本控件只适用于ListView的Item高度固定的布局(AdsorptionViewState),如果高度不固定会有偏差。已经更新了非固定高度的吸顶布局(AdsorptionViewNotEqualHeightState),有一点点小问题,请自行解决,里面有如何获取ListView第一个可见Item的方法,可供参考

Usage

Add this to your package's pubspec.yaml file:

dependencies:
  adsorptionview_flutter: ^0.1.3

Add it to your dart file:

import 'package:adsorptionview_flutter/adsorptionview_flutter.dart';

And ListView dataBin must extends AdsorptionData ,Add it to your dataBin file

import 'package:adsorptionview_flutter/adsorptiondatabin.dart';

Example

https://github.com/baoolong/Adsorptionview

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].