You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Track marks rendered with "renderTrackMarkComponent" are not visible after upgrade to Expo SDK 52 (maybe because the implicit upgrade to React Native 0.76.2).
The problem is related with "valueVisibleStyle" changes from {opacity:0} to {} when "allMeasured" is true
This section is re-rendered but seems to keep the previous value of {opacity:0}
<Animated.View
key={track-mark-${i}}
style={[
styles.renderThumbComponent,
{
transform: [
{
translateX: value,
},
{
translateY: 0,
},
],
...valueVisibleStyle,
},
]}>
{renderTrackMarkComponent(i)}
</Animated.View>
If I remove the "...valueVisibleStyle" it works again.
The text was updated successfully, but these errors were encountered:
Track marks rendered with "renderTrackMarkComponent" are not visible after upgrade to Expo SDK 52 (maybe because the implicit upgrade to React Native 0.76.2).
The problem is related with "valueVisibleStyle" changes from {opacity:0} to {} when "allMeasured" is true
This section is re-rendered but seems to keep the previous value of {opacity:0}
<Animated.View
key={
track-mark-${i}
}style={[
styles.renderThumbComponent,
{
transform: [
{
translateX: value,
},
{
translateY: 0,
},
],
...valueVisibleStyle,
},
]}>
{renderTrackMarkComponent(i)}
</Animated.View>
If I remove the "...valueVisibleStyle" it works again.
The text was updated successfully, but these errors were encountered: