react-native icon indicating copy to clipboard operation
react-native copied to clipboard

A framework for building native applications using React

Results 2114 react-native issues
Sort by recently updated
recently updated
newest added

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...

CLA Signed
p: Facebook
Partner

### 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...

Needs: Triage :mag:
Needs: Author Feedback
Needs: Repro

## 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...

CLA Signed
Shared with Meta

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...

CLA Signed
Stale
p: Facebook
Partner

Summary: Changelog: [Internal] Differential Revision: D56610268

CLA Signed
p: Facebook
Partner

Summary: Changelog: [Internal] No longer generates launch ID. Caller of `/open-debugger` is now responsible. Differential Revision: D55164645

CLA Signed
p: Facebook
Partner

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`...

CLA Signed
p: Facebook
Partner

### 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...

Needs: Triage :mag:
Newer Patch Available

### 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...

Platform: iOS
Stale
Platform: Android
Needs: Triage :mag:
Newer Patch Available

### 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...

Component: View
Needs: Repro
Newer Patch Available
Needs: Attention