Best of React Native — October 2022
- 1
- 2
DEV·3y
How to write a good README
README file is as indispensable for an open source project as it is the quality of the code. README files are plain text files because most of the source code hostings such as Github, GitLab or Azure Repos support the Markdown format. Using around 3 to 5 lines is a good rule of thumb. Each paragraph should have only one concept.
- 3
asayer·4y
React Fiber explained
Facebook began the creation of React Fiber in 2015(It is currently the default reconciler). The literal implementation of a fiber is an object. It is simply a Javascript object that contains information about a react component. The return fiber is the fiber to which the program should return after processing the current one.
- 4
Syncfusion·4y
React Router vs. React Router DOM
React Router DOM Routing is an essential technique for navigation among pages on a website based on user requests and actions. A separate library named React Router enables routing in React applications and allows defining multiple routes in an application. This article addresses this confusion by analyzing their differences and where to use which package.
- 5
Telerik·4y
The Guide to New Hooks in React 18
React 18 is a major release that comes with new features such as concurrent rendering, automated batching, transitions, new APIs and hooks. In this tutorial, we will cover the five new hooks that arrived in React 18: Are you feeling a bit rusty on the topic of hooks in general? Then you could check out the src/App.jsx import UseIdExample from "examples/UseIdExample" The image below.
- 6
Community Picks·4y
Setting up Storybook in your Development Environment
Storybook is a playground for testing UI components that runs alongside your app in development mode. Storybook editions are available for React, React Native, Vue, Angular, Svelte, Ember, Ember and React Native. It acts as an aid to you UI component library as it builds and indexes the components.
- 7
DZone·3y
Why Is the Flutter Framework Better Than React Native?
Flutter is a new framework for developing mobile apps that promise to be faster and more efficient than React Native. It uses Dart programming language, which is similar to JavaScript, but with some important differences. Flutter apps are compiled using ahead of time (AOT) compilation, which means that the app is compiled into.
- 8
This Week In React·4y
📨 #119: React OG Images, Tremor, Storybook, Decoupling, Rendering, Data-Fetching, Remix, Qwik, TypeScript, Playwright...
The ViteConf is the headless CMS with a Visual Editor designed for both developers and marketers. Use Storyblok React SDK to quickly build reusable components and fetch the content to create React, Next.js, Remix or even React-Native applications. Talk about the trendiest tech and skills (Playwright, WebVR, useEffect, Data Fetching, Remix, Remix …) will be on agenda.
- 9
asayer·4y
Deep Linking in React Native apps
Deep Linking in React Native apps is the reason why you click on a link and it opens up an app that’s installed on your device. Deep linking is the configuring of an application and the screens of that application so that the application can be launched and navigate to a screen within the application when a certain link is opened.