react-native-image-slider-box icon indicating copy to clipboard operation
react-native-image-slider-box copied to clipboard

Was hoping you could give the usage examples with Function components

Open AnatuGreen opened this issue 3 years ago • 1 comments

Hi, I was hoping you could give the usage examples with Function components since class components are gradually phasing off.

Thanks

AnatuGreen avatar Apr 25 '22 12:04 AnatuGreen

import { SliderBox } from "react-native-image-slider-box";
const images = [
  "https://source.unsplash.com/1024x768/?nature",
  "https://source.unsplash.com/1024x768/?water",
  "https://source.unsplash.com/1024x768/?girl",
  "https://source.unsplash.com/1024x768/?tree", // Network image
];
const MyComponent = ()=>{
  return (
     <SliderBox
        images={images}
      />
  );
}

nebaaaazzzz avatar Jun 16 '22 21:06 nebaaaazzzz