achorein / expo-share-intent

🚀 Simple share intent in an Expo Native Module
MIT License
174 stars 15 forks source link

feat: add image dimensions #52

Closed achorein closed 5 months ago

achorein commented 5 months ago

Summary

add the width and height in order to know if we have to resize the given image.

export interface ShareIntentFile {
  path: string;
  mimeType: string;
  fileName: string;
  size: number | null;
  width: number | null;
  height: number | null;
}

Todo

Issue

https://github.com/achorein/expo-share-intent/issues/34