“Реактивное скользящее изображение” Ответ

Реактивное скользящее изображение

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

Реактивное скользящее изображение

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

Реактивное скользящее изображение

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

Реактивное скользящее изображение

//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

Ответы похожие на “Реактивное скользящее изображение”

Вопросы похожие на “Реактивное скользящее изображение”

Больше похожих ответов на “Реактивное скользящее изображение” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования