123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- /**
- * @param:
- * itemWidth: 每一个图片宽度
- * itemHeight: 每一个图片高度
- * data: 数据 Arrary
- * nav: 路由方法
- */
- import React, { Component } from "react";
- import {
- StyleSheet,
- Text,
- View,
- FlatList,
- TouchableOpacity,
- Image
- } from "react-native";
- import BasePage from '../BasePage'
- import Dimensions from '../utils/dimensions'
- export default class ScrollRow extends Component {
- render() {
- return (
- <FlatList
- data={this.props.data}
- horizontal={true}
- renderItem={({ item, separators }) => this.renderItem(item, separators)}
- />
- )
- }
- renderItem(item, separators) {
- console.log(this.toNextPage)
- const courseId = item.course ? item.course.id : item.operationContent;
- return (
- <TouchableOpacity
- style={{
- // flex: 1,
- height: this.props.itemHeight,
- width: this.props.itemWidth,
- flexDirection: 'row',
- alignItems: 'center',
- marginLeft: 9,
- }}
- onPress={() => this.props.nav('CourseDetails', {courseId})}
- activeOpacity={1}
- >
- <View style={{
- height: this.props.itemHeight,
- width: this.props.itemWidth,
- flexDirection: 'column',
- alignItems: 'center',
- // flex: 1,
- }}>
- <Image
- source={{
- uri: item.zoneCourse ? item.zoneCourse.iconImg : item.boothContent
- // uri: item.icon
- }}
- style={{
- borderRadius: 10,
- width: this.props.itemWidth,
- height: this.props.itemHeight,
- marginBottom: 6,
- }}
- />
- {item.summary
- ?
- <Text style={styles.itemSummary}>
- {item.summary}
- </Text>
- :
- null
- }
- </View>
- </TouchableOpacity>
- )
- }
- }
- const styles = StyleSheet.create({
- wrapper: {
- },
- itemSummary: {
- // flex:1,
- width: '100%',
- height: 20,
- alignItems: 'center',
- justifyContent: "flex-start",
- color: '#151515',
- fontSize: 13,
- }
- })
|