Closed MS0015 closed 2 months ago
Thanks for raising this issue. I did a test, seems it only happens on iOS. I will create a new version with the fix.
https://github.com/user-attachments/assets/2db3db44-28c6-46e4-b6a0-88fa87c83b93
<View style={styles.container}>
<Card
source={{
uri: 'https://placedog.net/300/300?id=121',
}}
style={styles.image}
cachePolicy="dataCache"
onStart={handleStart}
onSuccess={handleSuccess}
onCompletion={handleCompletion}
tint={tint ? 'red' : 'black'}
placeholder={{
blurhash: 'UBIr4u9}00Rj?yEzxu%LIQ%1%6xt-ks,tAIU',
}}
/>
{start && <Text>Start at {Date()}</Text>}
{information?.width && <Text>width: {information?.width}</Text>}
{information?.height && <Text>height: {information?.height}</Text>}
{information?.source && <Text>source: {information?.source}</Text>}
{completion && <Text>Complete at {Date()}</Text>}
<TouchableOpacity onPress={() => setTint(!tint)}>
<Text style={{ fontSize: 32 }}>Change Tint Color</Text>
</TouchableOpacity>
</View>
dynamic tint color in iOS
https://github.com/user-attachments/assets/10155751-a957-4ee6-b909-fbdcfd06c781
Let me know if you still have this issue with v1.17.2 😃
What's happening?
When I change the tint color for the active tab, it remains the same as the initial color that was set.
Reproduceable Code
Relevant log output
Device
iPhone xs
TurboImage Version
1.17.1
Can you reproduce this issue in the TurboImage Example app?
No, I cannot reproduce the issue in the Example app