How can I get the device's ip on React Native

Get the device's IP on React Native using the library for getting information about the device's network


Installation

npm install react-native-network-info --save

For More Info:

https://github.com/pusherman/react-native-network-info

JS CODE:

import {NetworkInfo} from 'react-native-network-info';
componentWillMount=async()=>{

  NetworkInfo.getIPV4Address().then(ipv4Address => {
    console.log(ipv4Address);
    alert(ipv4Address);
  });

}




You may like these posts