openvpn_sf_flutter 2.0.0 openvpn_sf_flutter: ^2.0.0 copied to clipboard
A plugin that allow you to connect OpenVPN service with Flutter
import 'dart:io';
import 'package:flutter/material.dart';
import 'dart:async';
import 'package:openvpn_sf_flutter/openvpn_sf_flutter.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({Key? key}) : super(key: key);
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
late OpenVPN engine;
VpnStatus? status;
VPNStage? stage;
bool _granted = false;
@override
void initState() {
engine = OpenVPN(
onVpnStatusChanged: (data) {
setState(() {
status = data;
});
},
onVpnStageChanged: (data, raw) {
setState(() {
stage = data;
});
},
);
engine.initialize(
groupIdentifier: "group.com.superfuture.vpn",
providerBundleIdentifier:
"id.superfuture.openvpnFlutterExample.VPNExtension",
localizedDescription: "VPN by sf",
lastStage: (stage) {
setState(() {
this.stage = stage;
});
},
lastStatus: (status) {
setState(() {
this.status = status;
});
},
);
super.initState();
}
Future<void> initPlatformState() async {
engine.connect(config, "USA",
username: defaultVpnUsername,
password: defaultVpnPassword,
certIsRequired: true);
if (!mounted) return;
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Plugin example app'),
),
body: Center(
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
Text(stage?.toString() ?? VPNStage.disconnected.toString()),
Text(status?.toJson().toString() ?? ""),
TextButton(
child: const Text("Start"),
onPressed: () {
initPlatformState();
},
),
TextButton(
child: const Text("STOP"),
onPressed: () {
engine.disconnect();
},
),
if (Platform.isAndroid)
TextButton(
child: Text(_granted ? "Granted" : "Request Permission"),
onPressed: () {
engine.requestPermissionAndroid().then((value) {
setState(() {
_granted = value;
});
});
},
),
],
),
),
),
);
}
}
const String defaultVpnUsername = "";
const String defaultVpnPassword = "";
String config = "YOUR OPENVPN CONFIG HERE";