flutter_stripe_web 0.1.1
flutter_stripe_web: ^0.1.1 copied to clipboard
Stripe sdk for Flutter web
Stripe for Flutter Web #
This package is in a very early stage so be cautious to use it in production.
Getting Started #
- Add
flutter_stripe
andflutter_stripe_web
in your pubspec file - Add the js library inside
web/index.html
<html>
<head>
...
</head>
<body>
...
<script src="https://js.stripe.com/v3/"></script>
<script src="main.dart.js" type="application/javascript"></script>
</body>
</html>