react-native-web-refresh-control
v1.1.2
Published
An implementation of React Native's RefreshControl for web, since react-native-web currently does not provide one
Downloads
5,579
Maintainers
Readme
react-native-web-refresh-control
Drop-in RefreshControl component for web
Installation and Configuration
npm i react-native-web-refresh-control
If you're using Expo
You can go ahead and use the package!
If you're NOT using Expo
You will need to configure webpack to parse JSX in node_modules/react-native-web-refresh-control
.
- Eject from
react-scripts
withnpm run eject
. Make sure to know what ejecting is before doing it. - Modify the main
babel-loader
module inconfig/webpack.config.js
.- Replace
include: paths.appSrc,
withinclude: [paths.appSrc, /node_modules\/react-native-web-refresh-control/],
- Replace
Usage
react-native-web-refresh-control
exports two properties:
patchFlatListProps
is a function that you can call at some point, while your app is loading. It replaces the default value of the refreshControl prop ofFlatList
RefreshControl
can be used to easily giveScrollView
a pull-to-refresh functionality, just like theRefreshControl
exported from react-native. However, if you used theRefreshControl
from react-native, it would not work on the web. To see how to do this, check out this snack: https://snack.expo.io/@niciusb/refreshcontrol-example
Example of RefreshControl
https://snack.expo.io/@niciusb/refreshcontrol-example
import { RefreshControl } from 'react-native-web-refresh-control'
<ScrollView
refreshControl={
<RefreshControl refreshing={refreshing} onRefresh={reloadLines} />
}
>
<Text>This scrollview will have pull-to-refresh functionality on the web</Text>
</ScrollView>
Example of patchFlatListProps
// index.js
import { patchFlatListProps } from 'react-native-web-refresh-control'
import App from './App'
patchFlatListProps()
registerRootComponent(App)
Customize flat list refresh control for web
patchFlatListProps
takes optionaloptions
to customize the refresh control:- To customize refresh control for iOS and Android, please see RefreshControl API
| option | Type | Description | default | |------------|---------------------|------------------------------------------------------------------------------------------|----------------------------------| | colors | array | If tintColor is not defined, it uses the first color in the array for refresh indicator. | | | enabled | boolean | Whether the pull to refresh functionality is enabled. | true | | size | RefreshControl.SIZE | Size of the refresh indicator. | RefreshLayoutConsts.SIZE.DEFAULT | | tintColor | color | The color of the refresh indicator. | | | title | string | The title displayed under the refresh indicator. | | | titleColor | color | The color of the refresh indicator title. | | | |
- Example
// index.js
import { patchFlatListProps } from 'react-native-web-refresh-control'
import App from './App'
// make refresh control red
patchFlatListProps({tintColor: 'red'})
registerRootComponent(App)