https://stackoverflow.com/questions/36938742/touchablehighlight-not-clickable-if-position-absolute
import { TouchableOpacity } from 'react-native'
기본 react-native에서는 onPress로 할때 잘 동작함. ios/aos 모두
import { useSafeAreaInsets } from 'react-native-safe-area-context'
const insets = useSafeAreaInsets()
console.log(insets)을 보면 각 위치들을 구할 수 있음.
<View className="absolute top-0 bottom-[50%] w-full bg-transparent z-[1000] border-2 border-blue-500">
<View className="w-full h-full justify-center items-center">
</View>
</View>
안에 relative View를 하나 더 넣은 다음 위치 조정을 해줌.