sahlhoff / react-native-pulse

React Native Pulse Animation

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

unable to load image url

raymclee opened this issue · comments

Hi there, is this support to load image from url with below code?

<Pulse color="orange" numPulses={3} diameter={400} speed={20} duration={2000} image={{ source: { uri: "http://www.freeiconspng.com/uploads/calendar-date-event-month-icon--19.png" } }} />

I have a similar requirement. is it supported? If yes, Please share some example.

commented

@gauravasrivastava sure you can. Just look at

source={image.source}
and follow official RN guide for Image component

commented

Same issue,

did I miss something with image={source={require('../picture/logo.png')}} ?

@cheuk3 @Xifeat Try specifying the image's style prop with width and height properties set:

<Pulse
  color="orange"
  numPulses={3}
  diameter={400}
  speed={20}
  duration={2000}
  image={{
    source: { uri: "http://www.freeiconspng.com/uploads/calendar-date-event-month-icon--19.png" }
    style: { width: 50, height: 50 }
  }} />

also image is not centred on pulse, update style for following view and add {alignItems: 'center', justifyContent: 'center'} to centre image on pulse
<View style={[pulseWrapperStyle, {alignItems: 'center', justifyContent: 'center'}]}>

Can you please provide a sample code how to use image in the center of Pulse.

also image is not centred on pulse, update style for following view and add {alignItems: 'center', justifyContent: 'center'} to centre image on pulse
<View style={[pulseWrapperStyle, {alignItems: 'center', justifyContent: 'center'}]}>

Yo man thanks. :)