English | 简体中文
Flutter plugin - Get External IP
, Internal IP
address for wifi, cellular and wired. (currently for iOS only)
add flutter_ip
to your pubspec.yaml
dependencies:
flutter_ip: ^0.1.4
import 'package:flutter_ip/flutter_ip.dart';
String external = await FlutterIp.externalIP;
// e.g. 113.139.104.65 or ""
String internal = await FlutterIp.internalIP;
// e.g. 192.168.0.102 or ""
String type = await FlutterIp.networkType; // e.g. wifi
Type: String
Value: wifi, wired, cellular
Please check example app using Xcode.
This project is a starting point for a Flutter plug-in package, a specialized package that includes platform-specific implementation code for Android and/or iOS.
For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.