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

How can I get the device's ip on React Native get the device's ip on react-native-network-info
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:

You may like these posts


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);
  });

}