文件名称:react-native-photo-grid ★31 - React Native 组件,处理构建照片网格的复杂性,每行照片数量灵活。
文件大小:4KB
文件格式:ZIP
更新时间:2024-06-28 10:07:33
React Native Awesome Components
react-native-photo-grid React Native 组件处理构建照片网格的复杂性,每行具有灵活数量的照片安装 npm install react-native-photo-grid --save 用法 import React from 'react-native' ; 从 'react-native-photo-grid' 导入 PhotoGrid; 让 { Image, TouchableOpacity, Text } = React; class BestGrid extends React.Component { constructor() { super(); this.state = { 项目:[] }; } componentDidMount() { // 构建一个包含 60 张照片的数组 let items = Array.apply(null, Array(60)).map((v, i) => { return { id: i, src: 'http:/ /placehold.it/200x200?text='+(i+1) } }); this.
【文件预览】:
react-native-photo-grid-master
----package.json(759B)
----LICENSE(1KB)
----PhotoGrid.js(2KB)
----.gitignore(529B)
----README.md(1KB)