2024. 9. 22. 09:11

2024. 9. 19. 16:12

bytes -> str

 

text = by.decode('utf-8')

 

str -> bytes

 

bytedata = text.encode('utf-8')

2024. 9. 18. 16:33

import { useWindowDimensions } from 'react-native';

 

const width = useWindwoDemensions().width;

const height = useWindowDimensions().height;

 

const { width, height } = useWindowDimensions();

2024. 9. 6. 11:22

 

2024. 9. 4. 20:17

1. babel-plugin-module-resolver 설치

 

npm i babel-plugin-module-resolver

 

2. babel.config.js에서 plugins 수정

 

 

3. tsconfig.json 에 compilerOptions 수정