sladek-jan
sladek-jan
There is also a problem when a group with many items is expanded, then the user scrolls down to another group and expands it. If we simply collapse the group...
Sorry for not being helpful @amalChandran! In the end, I didn't like how user needed to wait for the collapse to finish. My new approach seems to work well and...
As a workaround, I can imagine one would use a Handler on the main thread (which is guaranteed here anyway), poll whether reactContext is still null and give up after...
My suspicion is that [the if-checks](https://github.com/facebook/react-native/commit/2d07d5f160efdd25f5b3dbfa65c13884df9f3117#diff-603b7dc6b8a6a1475051de116973331aa452b0c76cfa4f36cd413ac859e5534cR241) added in [2d07d5f](https://github.com/facebook/react-native/commit/2d07d5f160efdd25f5b3dbfa65c13884df9f3117) are too strict and they exclude valid cases: ``` UIAccessibilityTraits accessibilityRoleTraits = json ? [RCTConvert UIAccessibilityTraits:json] : UIAccessibilityTraitNone; if (view.reactAccessibilityElement.accessibilityRoleTraits !=...
Here is how I fixed it in case that someone finds it helpful: ``` diff --git a/React/Views/RCTViewManager.m b/React/Views/RCTViewManager.m index 9b4775ceec3c220c521cd8428af1da528bd688de..0cf1787d1a961ab385e97dc8d376e92835a10a19 100644 --- a/React/Views/RCTViewManager.m +++ b/React/Views/RCTViewManager.m @@ -231,7 +231,8 @@ -...
For me, it helped to: - update CMake to 3.22.1 in the Android Studio SDK Manager (this is the version that react-native-reanimated [uses as default](https://github.com/software-mansion/react-native-reanimated/blob/44a0e0d21d72e92e15d3faea30431cd240cccbb7/packages/react-native-reanimated/android/build.gradle#L273) when none provided) - delete...