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