Skip to content

peterpme/react-native-asyncstorage

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

11 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

react-native-asyncstorage

πŸ“¬ πŸ“« πŸ—„ Declarative AsyncStorage component for React Native

npm version

Installation

yarn add react-native-asyncstorage

or

npm install --save react-native-asyncstorage

API

AsyncStorage.GetItem

itemKey:  string
render: {
  loading: boolean,
  value: string | object,
  error: string
}

AsyncStorage.SetItem

itemKey: string
itemValue: string | object
render: {
  loading: boolean,
  value: string | object,
  error: string
}

Usage Examples

  • Fetch username from AsyncStorage before rendering the rest of your app
<AsyncStorage.GetItem
  itemKey='username'
  render={({ loading, value, error }) => {

    if (loading) return <AppLoading />
    
    return (
      <View style={styles.container}>
        <Text>Welcome to my app, ${value}</Text>
      </View>
    )
    
  }}
/>

Planned Updates

  • multiGet & multiSet support for multiple keys

Shoutout

Thanks to @tkh44 for the idea and his localforage version. He makes a lot of great shit, follow him on Twitter

About

πŸ“¬ πŸ“« πŸ—„ Declarative AsyncStorage component for React Native

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published