fake_proxy 0.1.0 copy "fake_proxy: ^0.1.0" to clipboard
fake_proxy: ^0.1.0 copied to clipboard

discontinued

A powerful proxy plugin for Flutter.

example/lib/main.dart

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

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

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

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Fake Proxy'),
        ),
        body: ListView(
          children: <Widget>[
            ListTile(
              title: const Text('Proxy'),
              onTap: () async {
                String proxy = await Proxy.getProxy();
                print('proxy: ${proxy ?? ''}');
              },
            ),
          ],
        ),
      ),
    );
  }
}
0
likes
30
pub points
0%
popularity

Publisher

verified publisherhaitanyule.com

A powerful proxy plugin for Flutter.

Repository (GitHub)
View/report issues

License

Apache-2.0 (LICENSE)

Dependencies

flutter

More

Packages that depend on fake_proxy