react-native-bottom-sheet VS async-storage

Compare react-native-bottom-sheet vs async-storage and see what are their differences.

react-native-bottom-sheet

A performant interactive bottom sheet with fully configurable options 🚀 (by gorhom)

async-storage

An asynchronous, persistent, key-value storage system for React Native. (by react-native-community)
Our great sponsors
  • SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
react-native-bottom-sheet async-storage
55 37
5,896 4,503
- 1.6%
7.0 8.3
11 days ago 3 days ago
TypeScript TypeScript
MIT License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

react-native-bottom-sheet

Posts with mentions or reviews of react-native-bottom-sheet. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-08-10.

async-storage

Posts with mentions or reviews of async-storage. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-02-20.
  • Unit Testing Expo Apps With Jest
    7 projects | dev.to | 20 Feb 2024
    \[@RNC/AsyncStorage\]: NativeModule: AsyncStorage is null. To fix this issue try these steps: • Rebuild and restart the app. • Run the packager with \`--reset-cache\` flag. • If you are using CocoaPods on iOS, run \`pod install\` in the \`ios\` directory and then rebuild and re-run the app. • If this happens while testing with Jest, check out docs how to integrate AsyncStorage with it: https://react-native-async-storage.github.io/async-storage/docs/advanced/jest If none of these fix the issue, please open an issue on the Github repository: https://github.com/react-native-async-storage/async-storage/issues 5 | import { ReactQueryDevtools } from '@tanstack/react-query-devtools'; 6 | import { Platform } from 'react-native'; > 7 | import AsyncStorage from '@react-native-async-storage/async-storage';
  • State Management Nx React Native/Expo Apps with TanStack Query and Redux
    8 projects | dev.to | 17 Feb 2024
    Storage: redux-persist, @react-native-async-storage/async-storage
  • Is there a way to store things even if the app closes?
    2 projects | /r/reactnative | 18 Aug 2023
    You want this: react-native-async-storage
  • Fullstack Developer here, just diving into React Native. For my first app do you think it would be better to use local storage or to build an api?
    2 projects | /r/reactnative | 23 May 2023
    What do you mean by local storage? The browser based localStorage API does not exist by default in react-native. There is an analogue though... The most basic package that most people use, AsyncStorage is just a string based key-value store: https://github.com/react-native-async-storage/async-storage . It's very useful for anything simple. It also has a merge function which lets you automatically update stringified JSON objects without unpacking them and doing the modifications yourself.
  • WhatsApp in React Native (part 3)
    4 projects | dev.to | 31 Jan 2023
    Android - SQLite
  • How to Mock and Test AsyncStorage in React Native
    2 projects | dev.to | 19 Jan 2023
    Since the original React Native AsyncStorage was deprecated, you may be using the community solution: react-native-async-storage. I would personally recommend it!
  • React vs React Native: How Different Are They, Really?
    12 projects | dev.to | 19 Dec 2022
    State management, orchestrating HTTP requests, synchronizing client and server state: all these things will apply to React Native. The differences will only arise when the device layer comes into play (for example, if you have to store data on the client, window.localStorage doesn’t exist, but AsyncStorage does.)
  • Learn to Build a Simple Books App with React Native
    4 projects | dev.to | 8 Dec 2022
    To persist data on the device storage, we are going to use Async Storage.
  • How I go with react native in late 2022
    33 projects | dev.to | 27 Nov 2022
    for most applications, AsyncStorage works fine. also, you can use it with redux-persist or persist middleware of zustand. in this way, you won't even need to touch the AsyncStorage. my first choice as a database (or just a persistor tool) is zustand and AsyncStorage. this combination can solve storage issues most of the time.
  • Building a real-time bidding system with Socket.io and React Native 🤩
    7 projects | dev.to | 15 Nov 2022
    So far, you've learnt how to set up Socket.io in a React Native and Node.js application, save data with Async Storage, and communicate between a server and the Expo app via Socket.io.

What are some alternatives?

When comparing react-native-bottom-sheet and async-storage you can also consider the following projects:

react-native-mmkv - ⚡️ The fastest key/value storage for React Native. ~30x faster than AsyncStorage!

react-native-firebase - 🔥 A well-tested feature-rich modular Firebase implementation for React Native. Supports both iOS & Android platforms for all Firebase services.

react-native-reanimated-bottom-sheet - Highly configurable bottom sheet component made with react-native-reanimated and react-native-gesture-handler

react-spring-bottom-sheet - Accessible ♿️, Delightful ✨, & Fast 🚀

redux-toolkit - The official, opinionated, batteries-included toolset for efficient Redux development

redux-persist - persist and rehydrate a redux store

react-native-portal - A simplified portal implementation for ⭕️ React Native & Web ⭕️.

react-native-webview - React Native Cross-Platform WebView

rn-swipeable-panel - Zero dependency swipeable bottom panel for React Native 📱

panes - 🎉📱 Create dynamic modals, cards, panes for your applications in few steps. One instance – Thousands solutions. Any framework and free.

rtk-query - Data fetching and caching addon for Redux Toolkit

expo-storage - Simple way to store persistent data, which does not have size limitations of react-native async-storage.