|
|
import React, {Component } from 'react'
|
|
|
import {View, StyleSheet, Text, Dimensions,TouchableOpacity} from 'react-native';
|
|
|
import {View, StyleSheet, Text, Dimensions,TouchableOpacity, Platform} from 'react-native';
|
|
|
import Immutable, {Map} from 'immutable';
|
|
|
import YH_Image from '../../../common/components/YH_Image';
|
|
|
|
...
|
...
|
@@ -92,7 +92,7 @@ export default class TripleImageSquare extends Component{ |
|
|
}
|
|
|
|
|
|
let {width, height} = Dimensions.get('window');
|
|
|
let containerHeigth = Math.ceil(width/3);
|
|
|
let containerHeigth = width/3;
|
|
|
let maskHeight = 30;
|
|
|
let nullHeigth = 10;
|
|
|
|
...
|
...
|
|