Best of React NativeMay 2024

  1. 1
    Article
    Avatar of appwrite_sourceAppwrite·2y

    Building cross platform applications with React Native

    Cross platform development allows developers to reach a broader target, save costs, deploy features across platforms in parallel, and have faster development time. However, it is not recommended when relying on advanced device features, high-performance requirements, fine control over memory management and processing, or when a team is already fluent in native development. Cross platform frameworks provide a unified API in a single language and compile the code as native code. UI elements can be rendered through native rendering or a custom rendering engine. Native device-specific functionalities are handled through plugins.

  2. 2
    Article
    Avatar of communityCommunity Picks·2y

    How To use Skeleton Screens in React and React Native

    Learn how to implement skeleton screens in React and React Native applications using community options like react-content-loader and react-skeletor.

  3. 3
    Article
    Avatar of freecodecampfreeCodeCamp·2y

    How to Create a React Native Splash Screen

    This post provides a practical guide for creating a native splash screen for React Native CLI applications. It discusses the use of the `react-native-bootsplash` library, generating splash screen files, connecting the library to the project, and hiding the splash screen.

  4. 4
    Article
    Avatar of freecodecampfreeCodeCamp·2y

    How to Store Data Locally in React Native Expo

    Learn how to store data locally in React Native Expo using AsyncStorage. Local storage is essential for boosting app speed and can be used to store user preferences, authentication tokens, and other important information. AsyncStorage provides a simple key-value storage system for easy data storage and retrieval. Follow best practices such as data serialization, error handling, and security considerations to ensure a robust and responsive app.