File tree 4 files changed +11
-2
lines changed
4 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,12 @@ that can be found in the LICENSE file. -->
6
6
7
7
See the [ Migration Guide] ( guides/migration_guide.md ) for breaking changes between versions.
8
8
9
+ ## 4.3.0+1
10
+
11
+ ### Fixes
12
+
13
+ - Fixes the breaking ` ColorScheme.background ` implementation on older Flutter SDKs.
14
+
9
15
## 4.3.0
10
16
11
17
### Improvements
Original file line number Diff line number Diff line change 1
1
name : wechat_camera_picker_demo
2
2
description : A new Flutter project.
3
- version : 4.3.0+35
3
+ version : 4.3.0+36
4
4
publish_to : none
5
5
6
6
environment :
Original file line number Diff line number Diff line change 1
1
// Copyright 2019 The FlutterCandies author. All rights reserved.
2
2
// Use of this source code is governed by an Apache license that can be found
3
3
// in the LICENSE file.
4
+ // ignore_for_file: deprecated_member_use
4
5
5
6
import 'dart:async' ;
6
7
@@ -92,12 +93,14 @@ class CameraPicker extends StatefulWidget {
92
93
primaryContainer: Colors .grey[900 ],
93
94
secondary: themeColor,
94
95
secondaryContainer: themeColor,
96
+ background: Colors .grey[900 ]! ,
95
97
surface: Colors .grey[900 ]! ,
96
98
brightness: Brightness .dark,
97
99
error: const Color (0xffcf6679 ),
98
100
onPrimary: Colors .black,
99
101
onSecondary: Colors .black,
100
102
onSurface: Colors .white,
103
+ onBackground: Colors .white,
101
104
onError: Colors .black,
102
105
),
103
106
);
Original file line number Diff line number Diff line change 1
1
name : wechat_camera_picker
2
- version : 4.3.0
2
+ version : 4.3.0+1
3
3
description : |
4
4
A camera picker for Flutter projects based on WeChat's UI,
5
5
which is also a separate runnable extension to the
You can’t perform that action at this time.
0 commit comments