오늘은 모달을 사용해봅시다. 모달 · 네이티브 반응 (reactnative.dev) Modal · React NativeThe Modal component is a basic way to present content above an enclosing view.reactnative.dev여기에 잘 나와있어용! 저는 따로 빼서 base모달을 만들어뒀습니다, import { View, Modal, StyleSheet } from "react-native";import React from "react";interface BaseModalProps { isOpen: boolean; onClose: () => void; children?: React.ReactNode;}export default functio..