flutter_proxy 0.1.2 copy "flutter_proxy: ^0.1.2" to clipboard
flutter_proxy: ^0.1.2 copied to clipboard

A flutter plugin to read network proxy info from native. It can be used to set up the network proxy for flutter.

example/lib/main.dart

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

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

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

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

class _MyAppState extends State<MyApp> {
  String _proxySetting = 'None';

  @override
  void initState() {
    super.initState();
    initPlatformState();
  }

  // Platform messages are asynchronous, so we initialize in an async method.
  Future<void> initPlatformState() async {
    try {
      final settings = await FlutterProxy.proxySetting;
      _proxySetting = '${settings.host}:${settings.port}';
    } on PlatformException {
      _proxySetting = 'Failed to get proxy settings.';
    }

    // 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(() {});
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Flutter Proxy Plugin'),
        ),
        body: Center(
          child: Text('Proxy Setting is: $_proxySetting\n'),
        ),
      ),
    );
  }
}
6
likes
40
pub points
71%
popularity

Publisher

unverified uploader

A flutter plugin to read network proxy info from native. It can be used to set up the network proxy for flutter.

Repository (GitHub)
View/report issues

License

BSD-3-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_proxy