728x90
먼저 아래와 같이 Alert를 import해오고,
import {
Alert
} from 'react-native';
아래와 같이 Alert.alert를 사용해 경고 문구를 띄워준다.
Alert.alert(
'앗!',
'단어장을 전부 다 지우면 안돼요!',
[
{text: 'OK', onPress: () => console.log('OK Pressed') },
]
);
728x90
'프로그래밍 > React Native(2018)' 카테고리의 다른 글
[React Native] createBottomTabNavigator의 header 없애는 방법 (0) | 2019.09.29 |
---|---|
[React Native] Android 뒤로가기 버튼을 다루는 방법 (0) | 2019.09.29 |
[React Native] 뒤로가기 버튼 두번 눌러서 앱 종료하기 (0) | 2019.09.29 |
[React Native] Navigation의 header사용방법 (0) | 2019.09.29 |
[React Native] array를 alphabetically 배열하는 방법 (0) | 2019.09.29 |
댓글