Open voody2506 opened 6 years ago
You can, you'd have to wrap each letter inside and animatable Text
and set the delay to be staggered so that each fade occurs after one another.
Okay, thank you! I will try to do this. Can you please give me some little example?
const style = { opacity: 1 };
<View>
<Text transition="opacity" style={style} duration={100} delay={0} >A</Text>
<Text transition="opacity" style={style} duration={100} delay={100}>B</Text>
<Text transition="opacity" style={style} duration={100} delay={200}>C</Text>
</View>
Hello! Can I realize letter by letter Fade out using this library? I am sorry if it is a duplicate question , but I can not find answer. Thanks!