react-native-windows
react-native-windows copied to clipboard
A framework for building native Windows apps with React.
### Problem Description We have recently upgraded react native Windows version to 0.63.4 to 0.68.6. We have started facing this issue after the upgrade. After launching the application if I...
## Description backport: https://github.com/microsoft/react-native-windows/pull/10192 ### Type of Change - Bug fix (non-breaking change which fixes an issue) ### Why Internal Request ## Testing Added example from original PR, and confirmed...
I want to add listener to key pressed events. In Android and iOS, I use react-native-keyevent to do it, but it doesn't be supported in react-native-windows. So I use IKeyboardProps...
### Problem Description I've found that in our React Native Windows app (which uses XAML islands), a simple component such as this one ends up announcing the changed text twice,...
## Description ### Type of Change _Erase all that don't apply._ - New feature (non-breaking change which adds functionality) ### Why While the default self measure function implemented in ViewManagerBase...
Since we strictly speaking don't need to reset the self measure func when swapping out a native view, we can just use the `IsNativeControlWithSelfLayout` check. This internally checks for the...
## Description This PR defines a new "ReactTag" attached property to store react tag values on XAML Dependency Objects, rather than using FrameworkElement's general-purpose Tag property. Some downstream users (i.e....
## Description backport: https://github.com/microsoft/react-native-windows/pull/10192 ### Type of Change - Bug fix (non-breaking change which fixes an issue) ### Why Internal Request ## Testing Added example from original PR, and confirmed...
When navigating to a new page using react-navigation, the components of a previously opened page remain in the tabindex. I think this is also related to some tabbing issues we're...
This PR modifies ScrollViewManager and VirtualizedList to work around the limitations of the RN core approach to list inversion. Specifically, the RN core approach to list inversion uses scroll axis...