I try to go to the page www.sandbox.paypal.com with Webview in Android version 4.4.2 and I get the error: Falling back to SSLv3 because host is TLS intolerant: www.sandbox.paypal.com:443
Widget build(BuildContext context) {
return new WebviewScaffold(
url: url,
appBar: new AppBar(
title: const Text('Widget webview'),
),
withZoom: true,
headers: {'Authorization': 'Token '},
withLocalStorage: true,
hidden: true,
initialChild: Container(
color: Colors.white,
child: const Center(
child: Align(
child: Text(''),
),
),
),
);
}