Open Solhea opened 1 year ago
This happens when I target the View component of React Native UI Lib. I don't get errors when I target Button or Toucahble Opacity.
<View width={"15%"} marginH-10 marginB-5>
<TouchableOpacity
flex
center
onPress={() => {
setShowPlanning(!showPlanning);
setShowPlannedToast(true);
}}
ref={(r) => setPlannedButtonRef(r)}
style={{
borderWidth: 1,
borderColor: colors.borderGrey,
borderRadius: 5,
backgroundColor: showPlanning ? colors.bgColorPrimary : colors.yellow,
}}
>
<MaterialIcons name={showPlanning ? "event-busy" : "event-available"} size={25} color={showPlanning ? colors.textColor : colors.primary} />
</TouchableOpacity>
</View>
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Description
After I upgrade react native from 0.71.10 to 0.72.1, the FeatureHighlight component gives an error only on Android. iOS is working fine.
Related to
Steps to reproduce
Steps to reproduce the behavior:
Expected behavior
Should show FeatureHighlight on the screen as an iOS device does.
Actual behavior
Gives a Render Error.
More Info
Code snippet
Screenshots/Video
Environment
Affected platforms