Hi all,
The behaviour I am experiencing:
Android only works when the animating props value is constant. animating={true}
IOS only works when the animating value is dynamic. Like connected to redux
This is my Android code setup.
TouchableOpacity style={styles.buttonFloat} onPress={()=> {}}>
<Shimmer>
<View >
<Text >{'START MY FIRST PROGRAM'}</Text>
</View>
</Shimmer>
</TouchableOpacity>
This is my IOS setup
TouchableOpacity style={styles.buttonFloat} onPress={()=> {}}>
<Shimmer
animating={( this.props.currentScreen=='currentScreen')?true:false}
>
<View >
<Text >{'START MY FIRST PROGRAM'}</Text>
</View>
</Shimmer>
</TouchableOpacity>
I think its to do with the View
Hi all,
The behaviour I am experiencing:
Android only works when the animating props value is constant. animating={true}
IOS only works when the animating value is dynamic. Like connected to redux
This is my Android code setup.
This is my IOS setup
I think its to do with the View