study: 리네다기 | 9장 - react-native-image-picker (RN 사진)

Lumpen·2023년 5월 15일
0

Study

목록 보기
82/92
import {launchImageLibrary, launchCamera} from 'react-native-image-picker';

const imagePickerOption = {
  mediaType: 'photo',
  maxWidth: 768,
  maxHeight: 768,
  includeBase64: Platform.OS === 'android',
};

const CameraButton = () => {
	  const onPickImage = (res) => {
    if (res.didCancel || !res) {
      return;
    }
    console.log(res);
  };

  const onLaunchCamera = () => {
    launchCamera(imagePickerOption, onPickImage);
  };

  const onLaunchImageLibrary = () => {
    launchImageLibrary(imagePickerOption, onPickImage);
  };

  return (
  	<View />
  )
}
profile
떠돌이 생활을 하는. 실업자는 아니지만, 부랑 생활을 하는

0개의 댓글