File tree Expand file tree Collapse file tree 3 files changed +20
-6
lines changed Expand file tree Collapse file tree 3 files changed +20
-6
lines changed Original file line number Diff line number Diff line change
1
+ ## 1.0.3
2
+ * Fixed issue with using disposed context(#26 )
3
+ * Removed hardcoded currency text in the checkout prompt (#30 )
4
+ * Fixed issue where plugin crashes app in headless service (#31 )
5
+ * Converted charge metadata to json format (thanks to Itope84)
6
+ * Fixed issue with validating past months
7
+ * Added option to hide email and/or amount in checkout prompt
8
+ * Made the example main.dart more usable
9
+ * Wrote unit tests and widget tests
10
+
1
11
## 1.0.2+1
2
12
3
- * Corrected typo
13
+ * Corrected typo in "Secured by" text
4
14
5
15
## 1.0.2
6
16
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ mixin BaseApiService {
11
11
'X-Paystack-Build' : PlatformInfo ().paystackBuild,
12
12
'X-PAYSTACK-USER-AGENT' :
13
13
jsonEncode ({'lang' : Platform .isIOS ? 'objective-c' : 'kotlin' }),
14
- 'bindings_version' : "1.0.2+1 " , // TODO: Update for every new versions
14
+ 'bindings_version' : "1.3.0 " , // TODO: Update for every new versions
15
15
'X-FLUTTER-USER-AGENT' : jsonEncode ({'version' : '1.0.0' })
16
16
};
17
17
final String baseUrl = 'https://standard.paystack.co' ;
Original file line number Diff line number Diff line change 1
1
name : flutter_paystack
2
2
description : A Flutter plugin for making payments via Paystack Payment Gateway. Completely supports Android and iOS.
3
- version : 1.0.2+1
3
+ version : 1.0.3
4
4
author : Wilberforce Uwadiegwu <faradaywilly@gmail.com>
5
5
homepage : https://github.com/wilburt/flutter_paystack
6
6
@@ -21,8 +21,12 @@ dev_dependencies:
21
21
22
22
flutter :
23
23
plugin :
24
- androidPackage : co.paystack.flutterpaystack
25
- pluginClass : FlutterPaystackPlugin
24
+ platforms :
25
+ android :
26
+ package : io.flutter.plugins.webviewflutter
27
+ pluginClass : WebViewFlutterPlugin
28
+ ios :
29
+ pluginClass : FLTWebViewFlutterPlugin
26
30
27
31
assets :
28
32
- assets/images/
@@ -31,4 +35,4 @@ flutter:
31
35
32
36
environment :
33
37
sdk : " >=2.2.2 <3.0.0"
34
- flutter : " >=0.5.1 <2.0.0"
38
+ flutter : " >=1.10.0 <2.0.0"
You can’t perform that action at this time.
0 commit comments