gateway 0.3.0 copy "gateway: ^0.3.0" to clipboard
gateway: ^0.3.0 copied to clipboard

A flutter plugin to get gateway. If you want to obtain gateway related information in a WiFi network, you can use this package to obtain gateway IP address, network address etc.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'dart:async';

import 'package:flutter/services.dart';
import 'package:gateway/gateway.dart';

void main() => runApp(MyApp());

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  String _platformVersion = 'Unknown';
  String _info="Not ready";
  @override
  void initState() {
    super.initState();
    initPlatformState();
    initInfoState();
  }

  // Platform messages are asynchronous, so we initialize in an async method.
  Future<void> initPlatformState() async {
    String platformVersion;
    // Platform messages may fail, so we use a try/catch PlatformException.
    try {
      platformVersion = await Gateway.platformVersion;
    } on PlatformException {
      platformVersion = 'Failed to get platform version.';
    }

    // If the widget was removed from the tree while the asynchronous platform
    // message was in flight, we want to discard the reply rather than calling
    // setState to update our non-existent appearance.
    if (!mounted) return;

    setState(() {
      _platformVersion = platformVersion;
    });
  }

  Future<void> initInfoState() async {
    Gateway gt;
    // Platform messages may fail, so we use a try/catch PlatformException.
    try {
      gt = await Gateway.info;
    } on PlatformException {
      _info = 'Failed to get platform version.';
    }

    // If the widget was removed from the tree while the asynchronous platform
    // message was in flight, we want to discard the reply rather than calling
    // setState to update our non-existent appearance.
    if (!mounted) return;

    setState(() {
      _info = gt.toString();
    });
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Center(
          child: Text('Running on: $_platformVersion\n$_info'),
        ),
      ),
    );
  }
}
2
likes
40
pub points
40%
popularity

Publisher

unverified uploader

A flutter plugin to get gateway. If you want to obtain gateway related information in a WiFi network, you can use this package to obtain gateway IP address, network address etc.

Repository (GitHub)
View/report issues

License

BSD-3-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on gateway