react-native-web
react-native-web copied to clipboard
Cross-platform React UI packages
**Do you want to request a *feature* or report a *bug*?** A bug. **If the current behavior is a bug, please provide the steps to reproduce and if a minimal...
In react-native TextInput is always autoexpandable. See https://github.com/facebook/react-native/commit/dabb78b1278d922e18b2a84059460689da12578b I think simplest way to implement this is to use https://github.com/rpearce/react-expanding-textarea It's just update textarea height based on el.scrollHeight: ``` _handleChange(e) {...
Image can support an array of `sources`, one of which is selected based on the layout dimensions of the image. https://facebook.github.io/react-native/docs/image.html#source https://github.com/facebook/react-native/blob/master/Libraries/Image/Image.ios.js https://github.com/facebook/react-native/blob/master/Libraries/Image/Image.android.js
**The problem** I am using the tintColor property to change the white color to pink when the icon is selected, on mobile and in all browsers except safari, the behavior...
**Is your feature request related to a problem? Please describe.** Revisit mapping `accessibilityRole="button"` to `button` element. The current approach uses ARIA roles to achieve similar results due to [historical problems...
**Is your feature request related to a problem? Please describe.** I've tried to find a way to style `autocomplete` style in `TextInput` and couldn't find any resource about it. ...
**The problem** When using `maintainVisibleContentPosition` on web, the value in `minIndexForVisible` is ignored by the ListHeaderComponent. It will always try to maintain the position of the `ListHeaderComponent` if it is...
**Is your feature request related to a problem? Please describe.** When you have a nested `Pressable` contained within another `Pressable`, the hover state of the inner `Pressable` cannot easily be...
**The problem** When using SessionList, each item is rendered but don't have any associate with the header **How to reproduce** Related to this example: https://reactnative.dev/docs/sectionlist The DOM will render like:...
scrollToIndex and scrollToLocation not working on FlatList, SectionList Sample code: (url) https://snack.expo.io/I9cYUYxJi **Environment (include versions). Did this work in previous versions?** * "react": "16.13.1", * "react-dom": "^17.0.1", * "react-native": "0.63.3",...