Skip to content

Commit

Permalink
Merge pull request #5 from Chapa-Et/main
Browse files Browse the repository at this point in the history
v0.0.7+1
  • Loading branch information
isrugeek authored Jan 7, 2025
2 parents 611437c + 52d3673 commit 687a0a6
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,9 @@

* Add Native UI Support for Android and iOS
* Improve payment flow with native implementation of webview
* Use public key for web checkout instead of secret key for better security
* Use public key for web checkout instead of secret key for better security

## 0.0.7+1

* Update Assets from CDN
* Update dependencies
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,21 @@ The official **Chapa Flutter SDK** enables Flutter developers to integrate Chapa
<div style="display: flex; justify-content: space-between; align-items: center;">
<div style="text-align: center;">
<p>Payment Methods in Grid View</p>
<img src="doc/gridview.png" alt="Payment Methods in Grid View" style="width: 200px;" />
<img src="https://chapa-bucket.s3.us-east-1.amazonaws.com/chapa-flutter-sdk-assets/doc/gridview.png" alt="Payment Methods in Grid View" style="width: 200px;" />
</div>
<div style="text-align: center;">
<p>Payment Methods in List View with Customized Button Color</p>
<img src="doc/listview.png" alt="Payment Methods in List View" style="width: 200px;" />
<img src="https://chapa-bucket.s3.us-east-1.amazonaws.com/chapa-flutter-sdk-assets/doc/listview.png" alt="Payment Methods in List View" style="width: 200px;" />
</div>
<div style="text-align: center;">
<p>Error</p>
<img src="doc/error.png" alt="Error" style="width: 200px;" />
<img src="https://chapa-bucket.s3.us-east-1.amazonaws.com/chapa-flutter-sdk-assets/doc/error.png" alt="Error" style="width: 200px;" />
</div>
<div style="text-align: center;">
<p>Successful Payment Receipt</p>
<img src="doc/success.png" alt="Successful Payment Receipt" style="width: 200px;" />
<img src="https://chapa-bucket.s3.us-east-1.amazonaws.com/chapa-flutter-sdk-assets/doc/success.png" alt="Successful Payment Receipt" style="width: 200px;" />


</div>
</div>

Expand Down
2 changes: 1 addition & 1 deletion lib/features/native-checkout/chapa_native_payment.dart
Original file line number Diff line number Diff line change
Expand Up @@ -819,7 +819,7 @@ class _PaymentMethodsCustomBuilderViewState
color: Theme.of(context).scaffoldBackgroundColor,
boxShadow: [
BoxShadow(
color: Theme.of(context).shadowColor.withAlpha(128), // 50% opacity You can change it to .withOpacity(0.05) just remember .withOpacity(0.05) is deprecated
color: Theme.of(context).shadowColor.withAlpha(24),
blurRadius: 2,
spreadRadius: 2.0,
offset: Offset(0, 4), // Controls the position of the shadow
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: chapasdk
description: Chapa flutter library to accept payment via telebirr, CBEBirr, E-birr and m-pessa etc.
version: 0.0.7
version: 0.0.7+1
homepage: https://github.com/chapa-et/chapa-flutter

environment:
Expand Down

0 comments on commit 687a0a6

Please sign in to comment.