Hau Vo 1bc185390d Merge pull request #26 from kevinresol/master | пре 6 година | |
---|---|---|
Example | пре 6 година | |
android | пре 6 година | |
ios | пре 6 година | |
.gitattributes | пре 7 година | |
.gitignore | пре 7 година | |
.npmignore | пре 7 година | |
LICENSE | пре 6 година | |
README.md | пре 6 година | |
RNThumbnail.podspec | пре 6 година | |
index.js | пре 7 година | |
package.json | пре 6 година | |
yarn.lock | пре 6 година |
Get thumbnail from local media. Currently, it only supports for video.
$ npm install react-native-thumbnail --save
$ react-native link react-native-thumbnail
Libraries
➜ Add Files to [your project's name]
node_modules
➜ react-native-thumbnail
and add RNThumbnail.xcodeproj
libRNThumbnail.a
to your project’s Build Phases
➜ Link Binary With Libraries
Cmd+R
)<android/app/src/main/java/[...]/MainActivity.java
import com.reactlibrary.RNThumbnailPackage;
to the imports at the top of the filenew RNThumbnailPackage()
to the list returned by the getPackages()
methodandroid/settings.gradle
:
include ':react-native-thumbnail'
project(':react-native-thumbnail').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-thumbnail/android')
android/app/build.gradle
:
compile project(':react-native-thumbnail')
import RNThumbnail from 'react-native-thumbnail';
RNThumbnail.get(filepath).then((result) => {
console.log(result.path); // thumbnail path
})