vpn_detector 1.0.0
vpn_detector: ^1.0.0 copied to clipboard
Detect VPN connections on [Android and IOS]
import 'dart:async';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:vpn_detector/vpn_detector.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> {
bool _isVpnActive = false;
final _vpnDetectorPlugin = VpnDetector();
@override
void initState() {
super.initState();
initPlatformState();
}
// Platform messages are asynchronous, so we initialize in an async method.
Future<void> initPlatformState() async {
bool isVpnActive;
// Platform messages may fail, so we use a try/catch PlatformException.
// We also handle the message potentially returning null.
try {
isVpnActive = await _vpnDetectorPlugin.isVpnActive();
} on PlatformException {
isVpnActive = false;
}
// 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(() {
_isVpnActive = isVpnActive;
});
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('VPN detector example app'),
),
body: Center(
child: Text('VPN active is: $_isVpnActive'),
),
),
);
}
}