i have tried disabling cache but it does not work my Code
componentDidMount = () => {
alert("hello")
}
i dont get the alert today anything else is not updating even
i have tried disabling cache but it does not work my Code
componentDidMount = () => {
alert("hello")
}
i dont get the alert today anything else is not updating even
For displaying alerts in React Native, you need to use the native Alert API
, as the browser-defined alert
is not supported:
import { Alert } from 'react-native';
componentDidMount = () => {
Alert.alert("hello")
}
I tried this
componentWillMount() {
alert("hello")
}
and this worked