Answers for "expo react native take a photo"

0

how to link a photo in expo react native

import logo from './images/image.png'

<Image source={logo} style={{ width: 305, height: 159 }} />
Posted by: Guest on August-09-2021
0

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' },
);
Posted by: Guest on July-06-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language