“gambar geser realitas” Kode Jawaban

gambar geser realitas

import { SliderBox } from "react-native-image-slider-box";
Frantic Ferret

gambar geser realitas

<SliderBox images={this.state.images} />
Frantic Ferret

gambar geser realitas

export default class App extends Component {
  constructor(props) {
    super(props);
    this.state = {
      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
        require('./assets/images/girl.jpg'),          // Local image
      ]
    };
  }
  // other component code ...
}
Frantic Ferret

gambar geser realitas

//res: https://www.npmjs.com/package/react-native-image-slider-box
//1- add below import in your code :
import { SliderBox } from "react-native-image-slider-box";

//2- Define your image array source, for below examples i create array in state.
export default class App extends Component {
  constructor(props) {
    super(props);
    this.state = {
      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
        require('./assets/images/girl.jpg'),          // Local image
      ]
    };
  }
  // other component code ...
}

//3- Use SliderBox such as these below examples :
//Example 1 : SliderBox without and handler or customization
<SliderBox images={this.state.images} />
Frantic Ferret

Jawaban yang mirip dengan “gambar geser realitas”

Pertanyaan yang mirip dengan “gambar geser realitas”

Lebih banyak jawaban terkait untuk “gambar geser realitas” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya