flutter_proxy 0.1.2 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.
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'),
),
),
);
}
}