react-native-image-gallery icon indicating copy to clipboard operation
react-native-image-gallery copied to clipboard

No Close button

Open kingkarki opened this issue 6 years ago • 2 comments

Hi Used DemoGallery from example. Everything works but it doesn't show close button as shown in screenshot. archriss_react-native-image-gallery__pure_javascript_image_gallery_component_for_ios_and_android_with_high-performance_and_native_feeling_in_mind

kingkarki avatar Sep 10 '18 12:09 kingkarki

@kingkarki what was your solution?

nerjok avatar May 30 '19 09:05 nerjok

@kingkarki @nerjok

get galleryCount() { const { index, images } = this.state; return ( <View style={{ top: 20, height: 65, backgroundColor: Colors.PURPLE, width: '100%', position: 'absolute' }}> <TouchableOpacity onPress={() => this.props.navigation.goBack()} style={{ position: 'absolute', left: 20, paddingLeft: "10%" }}> <Text style={{ color: 'white', fontSize: 18 }}>Kapat</Text> </TouchableOpacity> <Text style={{ position: 'absolute', right: 0, color: 'white', fontSize: 18, paddingRight: "10%" }}>{index + 1} / {images.length}</Text> </View> ); }

NazimMertBilgi avatar Sep 05 '21 20:09 NazimMertBilgi