-
Updated
Mar 22, 2022
React Native

React Native is a JavaScript mobile framework developed by Facebook. It allows developers to build Android and iOS mobile apps using JavaScript and reuse code across web and mobile applications.
Here are 31,285 public repositories matching this topic...
-
Updated
Apr 1, 2022
-
Updated
Mar 6, 2022 - JavaScript
相关平台
微信小程序
复现仓库
https://github.com/yangxudong-functorz/taro_issues/blob/main/issue1.ts
小程序基础库: 2.17.3
使用框架: React
复现步骤
直接只用 npm run build:weapp, 报错: Module not found: Can't resolve '"},"path":"....../xxx.config.ts"
期望结果
编译成功
🚀 Feature request
Current Behavior
The type ErrorMessage
doesn't have an id property.
Desired Behavior
It'd be nice id?: string
would be added to the type ErrorMessage
and set on the outermost component that serves as error message.
Suggested Solution
Add id={this.props.id}
to the outer component in ErrorMessage
.
Who does this impact? Who is this
-
Updated
Apr 1, 2022 - Swift
Environment
Joplin version: 2.6.10
Platform: Linux
Steps to reproduce
- Create a notebook structure like this:
- Project 1
- Archived
- Project 2
- Archived
- Create a note.
- Use "Move to notebook" option.
- Type "archived" in the search box.
- It is not possible to distinguish which parent the child notebook belongs to, see the image:
.
If you're interested please comment here and come [
The Overlay
component currently fades in extremely fast and does not fade out. It would be nice if the developer could control the fade in and fade out time of the Overlay component.
-
Updated
Mar 12, 2022 - TypeScript
Current Behavior
the current DrawerItem
passes accessibilityState
to Link
. this is an invalid attribute for role="link"
Expected Behavior
also exclude accessibilityState
from Link
in the default DrawerItem
all that really needs to be done is add a line under [this line](https://github.com/react-navigation/react-navigation/blob/0fce8eb2a1e682194d574c65f3366f72e23f2
-
Updated
Mar 23, 2022 - JavaScript
-
Updated
Mar 14, 2022 - JavaScript
-
Updated
Apr 1, 2022 - TypeScript
-
Updated
Apr 1, 2022 - TypeScript
-
Updated
Mar 30, 2022 - JavaScript
At present, URL custom profile fields are limited to 50 characters, which makes it impossible to enter many valid URLs.
Instead, the character limit should be increased to the maximum possible URL length (as determined by standards for URLs).
To make your PR easy to review, please post the reference where you looked up the URL length limit.
-
Updated
Mar 30, 2022 - Java
The "src" directory contains a number of JS files that are added to the base copy of RN. It is not a complete source tree itself. Renaming to "patches" would increase clarity of intent, and follow OSS "patch-package" conventions.
-
Updated
Apr 1, 2022 - TypeScript
I may be reading it completely wrong, but the current way the Screen component decides whether to use a scrollview or not is to check isNonScrolling(preset)
The code:
export function isNonScrolling(preset?: ScreenPresets) {
// any of these things will make you scroll
return !preset || !presets[preset] || preset === "fixed"
}
The comment "Any of these things will make yo
-
Updated
Jan 22, 2022 - JavaScript
-
Updated
Mar 30, 2022 - Objective-C
-
Updated
Feb 13, 2022 - TypeScript
-
Updated
Mar 30, 2022 - Objective-C
-
Updated
Apr 1, 2022 - TypeScript
-
Updated
Mar 9, 2022 - TypeScript
Created by Facebook
Released January 2015
Latest release 3 days ago
- Repository
- facebook/react-native
- Website
- reactnative.dev
- Wikipedia
- Wikipedia
Describe the bug
In Firefox, the zoom feature uses
transform
styles (see storybookjs/storybook#12845) - unfortunately this breaks positioning on elements that requireposition: fixed
when in the "Docs" view.Normally a
position: fixed
element's position would correspond to the viewport but in Firefox it corresponds to the element with thetransform
style.