Reisze Image Expo React Native
const resizedPhoto = await ImageManipulator.manipulateAsync(
photo.uri,
[{ resize: { width: 300 } }], // resize to width of 300 and preserve aspect ratio
{ compress: 0.7, format: 'jpeg' },
);
Fragile Flatworm