diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-12-16 11:57:45 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-12-16 11:57:45 -0600 |
commit | 3aded6887d8b89bccd7c8aa31306f94336ee1123 (patch) | |
tree | 184e7f732f244b1b64505df7a8e945efbc03f22f /src/view/com/lightbox/Image.tsx | |
parent | 3a44a1cfdcd664ebf71fdf7edc89c460acdaa558 (diff) | |
download | voidsky-3aded6887d8b89bccd7c8aa31306f94336ee1123.tar.zst |
Add swipe gestures to the lightbox
Diffstat (limited to 'src/view/com/lightbox/Image.tsx')
-rw-r--r-- | src/view/com/lightbox/Image.tsx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/view/com/lightbox/Image.tsx b/src/view/com/lightbox/Image.tsx index 2e3307774..a620e949e 100644 --- a/src/view/com/lightbox/Image.tsx +++ b/src/view/com/lightbox/Image.tsx @@ -4,7 +4,6 @@ import {Image, StyleSheet, useWindowDimensions, View} from 'react-native' export function Component({uri}: {uri: string}) { const winDim = useWindowDimensions() const top = winDim.height / 2 - (winDim.width - 40) / 2 - 100 - console.log(uri) return ( <View style={[styles.container, {top}]}> <Image style={styles.image} source={{uri}} /> |