Fix to ordering of images in the embed grid (#121)
This commit is contained in:
@@ -158,20 +158,20 @@ function ImageLayoutGridInner({
|
|||||||
<View style={styles.hSpace} />
|
<View style={styles.hSpace} />
|
||||||
<TouchableOpacity
|
<TouchableOpacity
|
||||||
delayPressIn={DELAY_PRESS_IN}
|
delayPressIn={DELAY_PRESS_IN}
|
||||||
onPress={() => onPress?.(1)}
|
onPress={() => onPress?.(2)}
|
||||||
onPressIn={() => onPressIn?.(1)}
|
onPressIn={() => onPressIn?.(2)}
|
||||||
onLongPress={() => onLongPress(1)}>
|
onLongPress={() => onLongPress(2)}>
|
||||||
<Image source={{uri: uris[1]}} style={size1} />
|
<Image source={{uri: uris[2]}} style={size1} />
|
||||||
</TouchableOpacity>
|
</TouchableOpacity>
|
||||||
</View>
|
</View>
|
||||||
<View style={styles.wSpace} />
|
<View style={styles.wSpace} />
|
||||||
<View>
|
<View>
|
||||||
<TouchableOpacity
|
<TouchableOpacity
|
||||||
delayPressIn={DELAY_PRESS_IN}
|
delayPressIn={DELAY_PRESS_IN}
|
||||||
onPress={() => onPress?.(2)}
|
onPress={() => onPress?.(1)}
|
||||||
onPressIn={() => onPressIn?.(2)}
|
onPressIn={() => onPressIn?.(1)}
|
||||||
onLongPress={() => onLongPress(2)}>
|
onLongPress={() => onLongPress(1)}>
|
||||||
<Image source={{uri: uris[2]}} style={size1} />
|
<Image source={{uri: uris[1]}} style={size1} />
|
||||||
</TouchableOpacity>
|
</TouchableOpacity>
|
||||||
<View style={styles.hSpace} />
|
<View style={styles.hSpace} />
|
||||||
<TouchableOpacity
|
<TouchableOpacity
|
||||||
|
|||||||
Reference in New Issue
Block a user