I get the location in my Flutter app. I have a WebView and I want to pass the location inside it (to handle it after in the site opened within the webview).
var userLocation = Provider.of<UserLocation>(context);
And my WebView:
WebView(
initialUrl: widget.url,
javascriptMode: JavascriptMode.unrestricted,
)
Is there a way to do it? My goal is like a binding between flutter and angular sending continuous location data.