Ojasv Singh
Ojasv Singh
@SchmueI Did you find any workaround? I am facing the same issue.
@fernandolguevara Can you please help with the dependency issue.
@avri-schneider for me it is like ``` It appears there is a persistent issue with the format of the input. I will ensure that the format strictly adheres to the...
Anyone has any reference code on how to setup communication b/w flutter and js from same origin? i want to send msg from js to flutter but not able to...
Any update here? ``` InAppWebView(key: webViewKey, initialUrlRequest: URLRequest(url: WebUri("http://flutter.dev")), onWebViewCreated: (controller) async { print("created"); webViewController = controller; var result = await webViewController .evaluateJavascript(source: "1+12"); print("Evaluation result: $result"); }, onLoadStart: (controller,...
@anarnoli did you check if the methods are supported on your platform? web capabilites are very limited https://github.com/pichillilorenzo/flutter_inappwebview/issues/2026
``` public BigQuery getBqService(BigQueryEmulatorContainer bigQueryEmulatorContainer) { String url = bigQueryEmulatorContainer.getEmulatorHttpEndpoint(); BigQueryOptions options = BigQueryOptions .newBuilder() .setProjectId(bigQueryEmulatorContainer.getProjectId()) .setHost(url) .setLocation(url) .setCredentials(NoCredentials.getInstance()) .build(); return options.getService(); } ```
Has any dev started on it?