'Is it possible to make Vpn app using flutter and dart
I tried using this package to make VPN connection app but it dose not support the connection type like (L2TP or PPTP)
Solution 1:[1]
i found that code on source, seems like pptp connection
/// Use given credentials to connect VPN (ikev2-eap).
/// This will create a background VPN service.
static Future<Null> simpleConnect(
String address, String username, String password) async {
await _channel.invokeMethod('connect',
{'address': address, 'username': username, 'password': password});
}
Solution 2:[2]
Yes It's Possible I have found this library on GitHub you should try it, https://github.com/X-dea/flutter_vpn
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Murat Aslan |
Solution 2 | Shailandra Rajput |