File tree Expand file tree Collapse file tree 3 files changed +10
-5
lines changed Expand file tree Collapse file tree 3 files changed +10
-5
lines changed Original file line number Diff line number Diff line change
1
+ ## 1.0.4+1
2
+ * Downgraded minimum Flutter version to 1.20.1
3
+
1
4
## 1.0.4
2
5
* Implemented support for V2 Android embedding
3
6
* Removed instances of deprecated Flutter APIs
Original file line number Diff line number Diff line change @@ -50,14 +50,16 @@ class CustomAlertDialog extends StatelessWidget {
50
50
),
51
51
));
52
52
53
- return buildContent (children);
53
+ return buildContent (context, children);
54
54
}
55
55
56
- Widget buildContent (List <Widget > children) {
56
+ Widget buildContent (context, List <Widget > children) {
57
57
Widget widget;
58
58
if (fullscreen) {
59
59
widget = new Material (
60
- color: Colors .white,
60
+ color: Theme .of (context).brightness == Brightness .light
61
+ ? Colors .white
62
+ : Colors .grey,
61
63
child: new Container (
62
64
child: onCancelPress == null
63
65
? new Padding (
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.4
3
+ version : 1.0.4+1
4
4
author : Wilberforce Uwadiegwu <faradaywilly@gmail.com>
5
5
homepage : https://github.com/wilburt/flutter_paystack
6
6
@@ -35,4 +35,4 @@ flutter:
35
35
36
36
environment :
37
37
sdk : " >=2.2.2 <3.0.0"
38
- flutter : " >=1.20.2 <2.0.0"
38
+ flutter : " >=1.20.1 <2.0.0"
You can’t perform that action at this time.
0 commit comments