-
Updated
Jun 13, 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 32,950 public repositories matching this topic...
-
Updated
Jun 22, 2022
-
Updated
Jun 21, 2022 - JavaScript
钉钉小程序升级3.5问题
相关平台
钉钉小程序
使用框架: React
复现步骤
3.4版本升级至3.5
期望结果
升级成功
实际结果
升级失败
环境信息
👽 Taro v3.5.0-beta.0
Taro CLI 3.5.0-beta.0 environment info:
System:
OS: Windows 10
Binaries:
Node: 16.14.0 - D:\Program Files\nodejs\node.EXE
Yarn: 1.22.17 - C:\Users\caiju\AppData\Roamin
🚀 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
Jun 26, 2022
The desktop app allows free customisation of the basic layout via the toggleLayoutMoveMode command (bound to View > Change application layout toolbar menu) which allows movement of the various panels and can permit vertical, horizontal or mixed layouts. The application also supports toggling the visibility of the notebook list and notelist.
The terminal app is otherwise relatively static, the
-
Updated
Jun 27, 2022 - TypeScript
-
Updated
Jun 25, 2022 - TypeScript
Update visual date formatting for custom status expiry to 2021-06-28 (ensure month and day are always double digits by adding 0 in front when needed)
If you're interested please comment here and come [join our "Contributors" community channel](https://community.mattermost
-
Updated
Jun 27, 2022 - TypeScript
Is your feature request related to a problem? Please Describe.
Add accessibilityHint and accessibilityLabel support to ButtonGroup buttons. Currently when I try to pass in a custom button component like this to the ButtonGroup buttons prop:
const buttons = [
(
<Text
accessibilityHint={translate('ARIA HINT - Tap to search by podcast title')}
accessibilityLabel={
-
Updated
Jun 26, 2022 - JavaScript
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
Jun 27, 2022 - JavaScript
-
Updated
Jun 27, 2022 - TypeScript
-
Updated
Jun 27, 2022 - TypeScript
This PR adds a function to disable the subscribers tab for private
streams if a user is not subscribed to the stream and is not an admin.
We also live update the state of subscribers tab on changing privacy
of stream.
Completing #21537 opened by @Zoronium. Made a few improvements to
directly use can_view_subscribers function, enabling "General" tab in case
subscribers tab was opened when
-
Updated
Jun 25, 2022 - JavaScript
-
Updated
Jun 27, 2022 - C++
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
Jun 24, 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
May 23, 2022 - JavaScript
-
Updated
Jun 24, 2022 - Objective-C
-
Updated
Jun 24, 2022 - TypeScript
-
Updated
May 26, 2022 - Objective-C
-
Updated
Jun 10, 2022 - TypeScript
-
Updated
Jun 16, 2022 - TypeScript
Created by Facebook
Released January 2015
Latest release 5 days ago
- Repository
- facebook/react-native
- Website
- reactnative.dev
- Wikipedia
- Wikipedia



aria-expanded is meant to be used with button, or some other role. It is currently be added to the parent div with no role making the attribute ineffective.
https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-expanded#associated_roles
Moving the aria-expanded to the button that does the expanding will provide better accessibility to those using screen readers.