Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get device IP in Dart/Flutter

Tags:

I am currently writing an app where the user needs to know the IP address of their phone/tablet. Where would I find this information?

I only want to know what the local IP address is, such as, 192.168.x.xxx and NOT the public IP address of the router.

So far, I can only seem to find InternetAddress.anyIPv4 and InternetAddress.loopbackIPv4. The loopback address is not what I want as it is 127.0.0.1.

like image 367
iProgram Avatar asked Sep 19 '18 17:09

iProgram


2 Answers

I guess you mean the local IP of the currently connected Wifi network, right?

EDITED

In this answer, I used to suggest using the NetworkInterface in 'dart:io', however NetworkInterface.list is not supported in Android (as pointed out by Mahesh). The wifi package provides that, but later this was incorporated to the flutter's connectivity plugin. In Oct/2020 the methods for that were moved from the connectivity to the wifi_info_flutter plugin.

So just go for wifi_info_flutter and call await WifiFlutter().getWifiIP().


By the way, you may also want to check if Wifi is available using the connectivity plugin in flutter/plugins. Here's an example of how to check if wifi is available.

like image 198
Feu Avatar answered Sep 19 '22 19:09

Feu


I was searching for getting IP address in flutter for both the iOS and android platforms.

As answered by Feu and Günter Zöchbauer following works on only iOS platform

NetworkInterface.list(....);

this listing of network interfaces is not supported for android platform.

After too long search and struggling with possible solutions, for getting IP also on android device, I came across a flutter package called wifi, with this package we can get device IP address on both iOS and android platforms. Simple sample function to get device IP address

Future<InternetAddress> get selfIP async {
    String ip = await Wifi.ip;
    return InternetAddress(ip);
}

I have tested this on android using wifi and also from mobile network. And also tested on iOS device.

Though from name it looks only for wifi network, but it has also given me correct IP address on mobile data network [tested on 4G network].

#finally_this_works : I have almost given up searching for getting IP address on android and was thinking of implementing platform channel to fetch IP natively from java code for android platform [as interface list was working for iOS]. This wifi package saved the day and lots of headache.

like image 29
Mahesh Avatar answered Sep 21 '22 19:09

Mahesh