रिएक्टिव नेटिव - अलर्ट
इस अध्याय में, हम समझेंगे कि कस्टम कैसे बनाएं Alert घटक।
चरण 1: App.js
import React from 'react'
import AlertExample from './alert_example.js'
const App = () => {
return (
<AlertExample />
)
}
export default App
चरण 2: alert_example.js
हम ट्रिगर करने के लिए एक बटन बनाएंगे showAlert समारोह।
import React from 'react'
import { Alert, Text, TouchableOpacity, StyleSheet } from 'react-native'
const AlertExample = () => {
const showAlert = () =>{
Alert.alert(
'You need to...'
)
}
return (
<TouchableOpacity onPress = {showAlert} style = {styles.button}>
<Text>Alert</Text>
</TouchableOpacity>
)
}
export default AlertExample
const styles = StyleSheet.create ({
button: {
backgroundColor: '#4ba37b',
width: 100,
borderRadius: 50,
alignItems: 'center',
marginTop: 100
}
})
उत्पादन
जब आप बटन पर क्लिक करते हैं, तो आपको निम्नलिखित दिखाई देंगे -