Skip to content

BondGoat/react-native-photo-viewer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

react-native-photo-viewer

React native photo viewer component for Android, iOS

Table of contents

Install

npm install react-native-photo-viewer --save

Use rnpm to automatically complete the installation:
rnpm link react-native-photo-viewer

or link manually like so:

Android

// file: android/settings.gradle
...

include ':react-native-photo-viewer'
project(':react-native-photo-viewer').projectDir = new File(settingsDir, '../node_modules/react-native-photo-viewer/android')
// file: android/app/build.gradle
...

dependencies {
    ...
    compile project(':react-native-photo-viewer')
}
// file: android/app/src/main/java/com/<...>/MainApplication.java
...

import com.wog.photoviewer.PhotoViewerPackage;; // <-- add this import

public class MainApplication extends Application implements ReactApplication {
    @Override
    protected List<ReactPackage> getPackages() {
        return Arrays.<ReactPackage>asList(
            new MainReactPackage(),
            new PhotoViewerPackage() // <-- add this line
        );
    }
...
}

Usage

Android

var PhotoViewerManager = require('react-native-photo-viewer');

/**
 * The method will launch native module
 * @param {String} url Video link
 */
PhotoViewerManager.showPhotoViewer(url);

iOS

var PhotoViewer = require('react-native-photo-viewer');

/**
 * This component will be used as Control, embeded inside a Viewer
 */
 <PhotoView
 source={{uri: [URL]}}
 minimumZoomScale={1} // min scale
 maximumZoomScale={4} // max scale
 .../>

About

React native photo viewer component for Android, iOS

Resources

Stars

Watchers

Forks

Packages

No packages published