You'll have to calculate the aspect ratio of the image, and pass it into the options object:
const result = await ImagePicker.launchCameraAsync({
allowsEditing: true,
quality: 0.1,
aspect: [16, 9] // pass calculated aspect ratio here
});