https://github.com/hifza-khalid/flutter-stripe-payment
๐ A complete guide for integrating Stripe payments in Flutter apps. This repository covers payment intents ๐ณ, client secrets ๐, card payments ๐ฐ, and testing Stripe payments ๐งช in your Flutter project.
https://github.com/hifza-khalid/flutter-stripe-payment
flutter integration intents methods stripe-payments subscription testing
Last synced: 10 months ago
JSON representation
๐ A complete guide for integrating Stripe payments in Flutter apps. This repository covers payment intents ๐ณ, client secrets ๐, card payments ๐ฐ, and testing Stripe payments ๐งช in your Flutter project.
- Host: GitHub
- URL: https://github.com/hifza-khalid/flutter-stripe-payment
- Owner: Hifza-Khalid
- Created: 2025-03-04T14:15:51.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-07T01:28:53.000Z (over 1 year ago)
- Last Synced: 2025-03-07T02:28:21.773Z (over 1 year ago)
- Topics: flutter, integration, intents, methods, stripe-payments, subscription, testing
- Homepage: https://github.com/Hifza-Khalid/flutter-stripe-payment
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ๐ Flutter Stripe Payment
A **Flutter** application integrating **Stripe** for seamless payment processing. ๐ณโก
## ๐ Features
- ๐ Secure Stripe Payments
- ๐ Checkout Integration
- ๐จ Customizable UI
- โก Fast & Reliable Transactions
- ๐ Payment Status Tracking
## ๐ Installation
1. **Clone the repository**
```sh
git clone https://github.com/Hifza-Khalid/flutter-stripe-payment.git
cd flutter-stripe-payment
```
2. **Install dependencies**
```sh
flutter pub get
```
3. **Configure Stripe API Keys**
- Get your Stripe API keys from [Stripe Dashboard](https://dashboard.stripe.com/)
- Add them to your `lib/config.dart`
```dart
const String stripePublishableKey = "your-publishable-key";
const String stripeSecretKey = "your-secret-key";
```
## ๐ Usage
Run the app using:
```sh
flutter run
```
## ๐ Built With
- ๐ฏ Dart
- ๐ฅ๏ธ Flutter
- ๐ณ Stripe API
## ๐ License
This project is **MIT Licensed** ๐
## ๐ค Contributing
Pull requests are welcome! Feel free to open an issue or contribute. ๐
## ๐ Contact
For queries, reach out at ๐ง your-email@example.com
---
Made with โค๏ธ by [Hifza Khalid](https://github.com/Hifza-Khalid)