Last updated:
0 purchases
flutter proxy
flutter_proxy #
A flutter plugin to read network proxy info from native. It can be used to set up the network proxy for flutter.
Installing #
You should add the following to your pubspec.yaml file:
dependencies:
flutter_proxy: ^0.1.0
copied to clipboard
Example #
final settings = await FlutterProxy.proxySetting;
bool enabled = settings.enabled;
String host = settings.host;
int port = settings.port;
copied to clipboard
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.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.