I want to integrate PayPal payments in my flutter app but that functionality does not exist. I chose to use a flutter webview to load an html file that integrated the PayPal JavaScript SDK.
When I click on the PayPal button nothing happens. I think it's because the flutter Webview can't open another page for the payment process.
How can I bypass that problem?
With the plugin Flutter LiquidCore(https://pub.dartlang.org/packages/flutter_liquidcore) you can execute Node.js or JavaScript code within a virtual machine. Have a look at it, maybe it's just a WebView bug
Related
i've been looking for the solution around the internet and couldn't solve it yet.
Here is the problem:
My apps are running on flutter with webview website which is build with Laravel. The website have button to open the whatsapp link and phone number to call.
So i build webview apps to browse the website and hoping the apps could open the button i mentioned earlier which is Whatsapp and Call button from the laravel website.
But flutter apps won't let me open or launch whatsapp in webview.
For final result, i just want the apps open or launch the Whatsapp and Telephone in the phone.
Thank you for your time
I have a subscription form online on a website.
Now I am trying to build a mobile app with flutter.
I want to give my app users the possibility to subscribe as well.
But I don't want to do the form validation in the app, since it can change from time to time.
What I did is create a webview widget in flutter, this worked, untill the very last step.
The last step for a subscription is pay for it.
This can be done with a banking app on the phone, but when I click the link to the banking app from the webview, it throws an error:
net::ERR_UNKNOWN_URL_SCHEME
The link it's trying to reach is: intent://bankieren.ideal.ing.nl/..........
So the problem seems to me this intent...
Is there a way I can make this intent work in the webview?
If not, is there a way I can 'mirror' my web-form so I don't have to validate on 2 different locations (web and app)?
https://caniuse.com/web-app-manifest
https://developer.mozilla.org/en-US/docs/Web/API/BeforeInstallPromptEvent
Here it says, android webview supports add to home screen. Even then in instagram's in-app browser it doesn't work.
Even the custom install that we trigger using beforeinstallprompt also doesn't show up.
Not any of the documentations mention anything about this.
In IOS there's a way you can install web apps using profile configuration files. Do you know if there is a way to do the same in Android? If so, we can redirect the bio link to an install page of our web apps.
I want to integrate ccavenue payment gateway into my flutter app. As there is no package available for this now, I'm planning to implement this in a webview. Can anyone share an example to show how to implement ccavenue with webview in flutter?
Are there any issues if I use this method while building ios application?
How can we get the return data (reference id) back from the payment gateway if I use webview?
if you are using flutter WebView then i recommend you do the checkout process in WebView and return that from order id etc from your website.
I'm building an app where the user can purchase an item. The payment is handled by Stripe and Klarna on a website opened with url_launcher.
My question is how to properly return the user to the app after the purchase is successful. Stripe allows a return_url to be passed which could be a Firebase dynamic link that opens the app. Would this work since the website could possibly have been launched in a in-app browser? Or is it just better to use a WebView and monitor the url for the success one?
Any other thoughts are appreciated.
I think you can solve this using Deep Links.