├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── examples ├── Basic │ ├── .flowconfig │ ├── .gitignore │ ├── .npmignore │ ├── Basic.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Basic.xcscheme │ ├── BasicTests │ │ ├── BasicTests.m │ │ └── Info.plist │ ├── iOS │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── main.jsbundle │ │ └── main.m │ ├── index.ios.js │ └── package.json └── CustomIndicator │ ├── .flowconfig │ ├── .gitignore │ ├── .npmignore │ ├── CustomIndicator.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── CustomIndicator.xcscheme │ ├── CustomIndicatorTests │ ├── CustomIndicatorTests.m │ └── Info.plist │ ├── iOS │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── main.jsbundle │ └── main.m │ ├── index.ios.js │ ├── indicator.js │ └── package.json ├── lib ├── RefresherListView.js ├── index.js └── indicators │ ├── LoadingActivityIndicatorIOS.js │ └── LoadingBarIndicator.js ├── logo.png ├── package.json └── screencasts ├── activity-indicator-fixed.gif └── bar-indicator-top.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrusakbary/react-native-refresher/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrusakbary/react-native-refresher/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrusakbary/react-native-refresher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrusakbary/react-native-refresher/HEAD/README.md -------------------------------------------------------------------------------- /examples/Basic/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrusakbary/react-native-refresher/HEAD/examples/Basic/.flowconfig -------------------------------------------------------------------------------- /examples/Basic/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrusakbary/react-native-refresher/HEAD/examples/Basic/.gitignore -------------------------------------------------------------------------------- /examples/Basic/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrusakbary/react-native-refresher/HEAD/examples/Basic/.npmignore -------------------------------------------------------------------------------- /examples/Basic/Basic.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrusakbary/react-native-refresher/HEAD/examples/Basic/Basic.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/Basic/Basic.xcodeproj/xcshareddata/xcschemes/Basic.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrusakbary/react-native-refresher/HEAD/examples/Basic/Basic.xcodeproj/xcshareddata/xcschemes/Basic.xcscheme -------------------------------------------------------------------------------- /examples/Basic/BasicTests/BasicTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrusakbary/react-native-refresher/HEAD/examples/Basic/BasicTests/BasicTests.m -------------------------------------------------------------------------------- /examples/Basic/BasicTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrusakbary/react-native-refresher/HEAD/examples/Basic/BasicTests/Info.plist -------------------------------------------------------------------------------- /examples/Basic/iOS/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrusakbary/react-native-refresher/HEAD/examples/Basic/iOS/AppDelegate.h -------------------------------------------------------------------------------- /examples/Basic/iOS/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrusakbary/react-native-refresher/HEAD/examples/Basic/iOS/AppDelegate.m -------------------------------------------------------------------------------- /examples/Basic/iOS/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrusakbary/react-native-refresher/HEAD/examples/Basic/iOS/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /examples/Basic/iOS/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrusakbary/react-native-refresher/HEAD/examples/Basic/iOS/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /examples/Basic/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrusakbary/react-native-refresher/HEAD/examples/Basic/iOS/Info.plist -------------------------------------------------------------------------------- /examples/Basic/iOS/main.jsbundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrusakbary/react-native-refresher/HEAD/examples/Basic/iOS/main.jsbundle -------------------------------------------------------------------------------- /examples/Basic/iOS/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrusakbary/react-native-refresher/HEAD/examples/Basic/iOS/main.m -------------------------------------------------------------------------------- /examples/Basic/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrusakbary/react-native-refresher/HEAD/examples/Basic/index.ios.js -------------------------------------------------------------------------------- /examples/Basic/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrusakbary/react-native-refresher/HEAD/examples/Basic/package.json -------------------------------------------------------------------------------- /examples/CustomIndicator/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrusakbary/react-native-refresher/HEAD/examples/CustomIndicator/.flowconfig -------------------------------------------------------------------------------- /examples/CustomIndicator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrusakbary/react-native-refresher/HEAD/examples/CustomIndicator/.gitignore -------------------------------------------------------------------------------- /examples/CustomIndicator/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrusakbary/react-native-refresher/HEAD/examples/CustomIndicator/.npmignore -------------------------------------------------------------------------------- /examples/CustomIndicator/CustomIndicator.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrusakbary/react-native-refresher/HEAD/examples/CustomIndicator/CustomIndicator.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/CustomIndicator/CustomIndicator.xcodeproj/xcshareddata/xcschemes/CustomIndicator.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrusakbary/react-native-refresher/HEAD/examples/CustomIndicator/CustomIndicator.xcodeproj/xcshareddata/xcschemes/CustomIndicator.xcscheme -------------------------------------------------------------------------------- /examples/CustomIndicator/CustomIndicatorTests/CustomIndicatorTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrusakbary/react-native-refresher/HEAD/examples/CustomIndicator/CustomIndicatorTests/CustomIndicatorTests.m -------------------------------------------------------------------------------- /examples/CustomIndicator/CustomIndicatorTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrusakbary/react-native-refresher/HEAD/examples/CustomIndicator/CustomIndicatorTests/Info.plist -------------------------------------------------------------------------------- /examples/CustomIndicator/iOS/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrusakbary/react-native-refresher/HEAD/examples/CustomIndicator/iOS/AppDelegate.h -------------------------------------------------------------------------------- /examples/CustomIndicator/iOS/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrusakbary/react-native-refresher/HEAD/examples/CustomIndicator/iOS/AppDelegate.m -------------------------------------------------------------------------------- /examples/CustomIndicator/iOS/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrusakbary/react-native-refresher/HEAD/examples/CustomIndicator/iOS/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /examples/CustomIndicator/iOS/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrusakbary/react-native-refresher/HEAD/examples/CustomIndicator/iOS/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /examples/CustomIndicator/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrusakbary/react-native-refresher/HEAD/examples/CustomIndicator/iOS/Info.plist -------------------------------------------------------------------------------- /examples/CustomIndicator/iOS/main.jsbundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrusakbary/react-native-refresher/HEAD/examples/CustomIndicator/iOS/main.jsbundle -------------------------------------------------------------------------------- /examples/CustomIndicator/iOS/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrusakbary/react-native-refresher/HEAD/examples/CustomIndicator/iOS/main.m -------------------------------------------------------------------------------- /examples/CustomIndicator/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrusakbary/react-native-refresher/HEAD/examples/CustomIndicator/index.ios.js -------------------------------------------------------------------------------- /examples/CustomIndicator/indicator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrusakbary/react-native-refresher/HEAD/examples/CustomIndicator/indicator.js -------------------------------------------------------------------------------- /examples/CustomIndicator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrusakbary/react-native-refresher/HEAD/examples/CustomIndicator/package.json -------------------------------------------------------------------------------- /lib/RefresherListView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrusakbary/react-native-refresher/HEAD/lib/RefresherListView.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrusakbary/react-native-refresher/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/indicators/LoadingActivityIndicatorIOS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrusakbary/react-native-refresher/HEAD/lib/indicators/LoadingActivityIndicatorIOS.js -------------------------------------------------------------------------------- /lib/indicators/LoadingBarIndicator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrusakbary/react-native-refresher/HEAD/lib/indicators/LoadingBarIndicator.js -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrusakbary/react-native-refresher/HEAD/logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrusakbary/react-native-refresher/HEAD/package.json -------------------------------------------------------------------------------- /screencasts/activity-indicator-fixed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrusakbary/react-native-refresher/HEAD/screencasts/activity-indicator-fixed.gif -------------------------------------------------------------------------------- /screencasts/bar-indicator-top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrusakbary/react-native-refresher/HEAD/screencasts/bar-indicator-top.gif --------------------------------------------------------------------------------