react-native-siri-wave-view icon indicating copy to clipboard operation
react-native-siri-wave-view copied to clipboard

Multiple waves on iOS: Only first animates

Open techtunde opened this issue 7 years ago • 0 comments

I am trying to display multiple waves on the same screen (whether in separate views or a single parent view), but only the first one animates. Does anyone have any idea why?

<View style={{paddingBottom:wave_buffer()}}> <RNSiriWaveView backgroundColor={'transparent'} width={wave_width()} height={wave_height()} numberOfWaves={1} startAnimation={true} stopAnimation={false} /> </View> <View style={{paddingBottom:wave_buffer()}}> <RNSiriWaveView backgroundColor={'transparent'} width={wave_width()} height={wave_height()} numberOfWaves={1} startAnimation={true} stopAnimation={false} /> </View> <View style={{paddingBottom:wave_buffer()}}> <RNSiriWaveView backgroundColor={'transparent'} width={wave_width()} height={wave_height()} numberOfWaves={1} startAnimation={true} stopAnimation={false} /> </View> <View style={{paddingBottom:wave_buffer()}}> <RNSiriWaveView backgroundColor={'transparent'} width={wave_width()} height={wave_height()} numberOfWaves={1} startAnimation={true} stopAnimation={false} /> </View> <View style={{paddingBottom:wave_buffer()}}> <RNSiriWaveView backgroundColor={'transparent'} width={wave_width()} height={wave_height()} numberOfWaves={1} startAnimation={true} stopAnimation={false} /> </View> <View style={{paddingBottom:wave_buffer()}}> <RNSiriWaveView backgroundColor={'transparent'} width={wave_width()} height={wave_height()} numberOfWaves={1} startAnimation={true} stopAnimation={false} /> </View>

techtunde avatar Sep 25 '18 21:09 techtunde