Modal
react native 에는 빌트인 모듈로 Modal 이 구현되어 있다
prop으로 visible: boolean 을 주어 on / off 가능..
transparent 로 투명도 조절도 가능하다
position 은 absolute 처럼 동작함..
<Modal transparent={false} visible={isModal}>
<SafeAreaView>
</SafeAreaView>
</Modal>
modal 내부에 safeAreaView를 주어 작업할 예정..