rmbrone / rmbr_ip

Get External and Internal IP Address for Wifi, Wired, and Cellular

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

flutter_ip

pub version Awesome Flutter

English | 简体中文

Flutter plugin - Get External IP, Internal IP address for wifi, cellular and wired. (currently for iOS only)

Installation

add flutter_ip to your pubspec.yaml

  dependencies:
    flutter_ip: ^0.1.4

iOS Requirement - iOS Deployment Target 10.0

Import

  import 'package:flutter_ip/flutter_ip.dart';

Usage

Get External IP

  String external = await FlutterIp.externalIP; 
  // e.g. 113.139.104.65 or ""

Get Internal IP

  String internal = await FlutterIp.internalIP; 
  // e.g. 192.168.0.102 or ""

Get Network Type

  String type = await FlutterIp.networkType; // e.g. wifi
Network Type

Type: String

Value: wifi, wired, cellular

Example

Please check example app using Xcode.

Getting Started

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.

About

Get External and Internal IP Address for Wifi, Wired, and Cellular

License:MIT License


Languages

Language:Dart 35.7%Language:Swift 35.5%Language:Ruby 17.3%Language:Java 6.8%Language:Shell 2.6%Language:Objective-C 2.1%