react-native
react-native copied to clipboard
A framework for building native applications using React
Summary: Changes two important aspects of `StyleSheet.compose`: - Extract it from `StyleSheet` so that it can be imported from other internal modules without incurring circular dependencies. (Surprisingly, `StyleSheet` has a...
### Description When enabling MTE on a react native app, specifically https://github.com/ZeusLN/zeus, the app crashes. I first assumed this was an app bug but after attempting to debug for a...
## Summary: While writing some Jest tests, I noticed some instances of the following error: ``` Cannot read properties of undefined (reading 'remove') ``` Looks like there were two cases...
Summary: Any component wrapped via `createAnimatedComponent()` will always re-render, because it creates a new `style` object. It's impossible to memoize. Adding `useMemo()` here ensures that the `style` object passed to...
Summary: Changelog: [Internal] Differential Revision: D56610268
Summary: Changelog: [Internal] No longer generates launch ID. Caller of `/open-debugger` is now responsible. Differential Revision: D55164645
Summary: **Problem:** It was discovered while testing 3 party library, generated member variables in a C++ `struct` in `Props.h` is not initialized. For the problematic case it was a `boolean`...
### Description If using `gap`, `justifyContent`, and the first child is absolutely positioned, other children will be offset by the `gap` value. This is unexpected because, the parent view should...
### Description My server code: const WebSocket = require('ws'); // Create a WebSocket server const wss = new WebSocket.Server({ port: 8080 }); wss.on('connection', (ws) => { console.log('Client connected'); // Send...
### Description In HTML/CSS, `gap` applies gutters between child elements but ignores absolutely positioned children. On iOS React Native, `gap` also adds gutters for each absolutely positioned child, unexpectedly increasing...