Hau Vo dc9af06fce Merge pull request #40 from robwalkerco/patch-1 | před 5 roky | |
---|---|---|
Example | před 6 roky | |
android | před 5 roky | |
ios | před 5 roky | |
.gitattributes | před 7 roky | |
.gitignore | před 7 roky | |
.npmignore | před 7 roky | |
LICENSE | před 6 roky | |
README.md | před 5 roky | |
RNThumbnail.podspec | před 6 roky | |
index.js | před 7 roky | |
package.json | před 6 roky | |
yarn.lock | před 6 roky |
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
:
implementation project(':react-native-thumbnail')
import RNThumbnail from 'react-native-thumbnail';
RNThumbnail.get(filepath).then((result) => {
console.log(result.path); // thumbnail path
})