flutter_vpn_service 1.1.0 copy "flutter_vpn_service: ^1.1.0" to clipboard
flutter_vpn_service: ^1.1.0 copied to clipboard

PlatformAndroid

A Flutter plugin for interacting with Android's VPNService.

example/lib/main.dart

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

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter VPN Service',
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Flutter VPN Service Example'),
        ),
        body: Center(
          child: ElevatedButton(
            onPressed: () async {
              await FlutterVpnService.prepare();
              await FlutterVpnService.setSession("My VPN Session");
              await FlutterVpnService.addAddress("192.168.1.1", 32);
              await FlutterVpnService.establishVpn();
            },
            child: const Text('Start VPN'),
          ),
        ),
      ),
    );
  }
}
2
likes
140
points
313
downloads

Publisher

verified publisherwisecodex.com

Weekly Downloads

A Flutter plugin for interacting with Android's VPNService.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on flutter_vpn_service