File tree Expand file tree Collapse file tree 5 files changed +9
-6
lines changed
Expand file tree Collapse file tree 5 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,6 @@ collection:file:///Applications/flutter/.pub-cache/hosted/pub.dartlang.org/colle
88convert:file:///Applications/flutter/.pub-cache/hosted/pub.dartlang.org/convert-2.0.2/lib/
99crypto:file:///Applications/flutter/.pub-cache/hosted/pub.dartlang.org/crypto-2.0.6/lib/
1010csslib:file:///Applications/flutter/.pub-cache/hosted/pub.dartlang.org/csslib-0.14.6/lib/
11- flutter:file:///Applications/flutter/packages/flutter/lib/
1211front_end:file:///Applications/flutter/.pub-cache/hosted/pub.dartlang.org/front_end-0.1.6/lib/
1312glob:file:///Applications/flutter/.pub-cache/hosted/pub.dartlang.org/glob-1.1.7/lib/
1413html:file:///Applications/flutter/.pub-cache/hosted/pub.dartlang.org/html-0.13.3+3/lib/
Original file line number Diff line number Diff line change 1+ ## 0.0.12
2+
3+ featurn: 修改LocalNotification的属性名为"extra"
4+
15## 0.0.11
26
37iOS: 修复 getLaunchAppNotification 返回 null 的情况。
Original file line number Diff line number Diff line change 77
88``` yaml
99dependencies :
10- jpush_flutter : 0.0.11
10+ jpush_flutter : 0.0.12
1111` ` `
1212
1313### 配置
Original file line number Diff line number Diff line change @@ -258,7 +258,7 @@ class LocalNotification {
258258 final int id;
259259 final String title;
260260 final String content;
261- final Map <String , String > extras ;//?
261+ final Map <String , String > extra ;//?
262262 final DateTime fireTime;
263263 final int badge;//?
264264 final String soundName;//?
@@ -270,7 +270,7 @@ class LocalNotification {
270270 @required this .content,
271271 @required this .fireTime,
272272 this .buildId,
273- this .extras ,
273+ this .extra ,
274274 this .badge = 0 ,
275275 this .soundName,
276276 this .subtitle
@@ -287,7 +287,7 @@ class LocalNotification {
287287 'content' : content,
288288 'fireTime' : fireTime.millisecondsSinceEpoch,
289289 'buildId' : buildId,
290- 'extras ' : extras ,
290+ 'extra ' : extra ,
291291 'badge' : badge,
292292 'soundName' : soundName,
293293 'subtitle' : subtitle
Original file line number Diff line number Diff line change 11name : jpush_flutter
22description : Offically supported JPush Flutter plugin.
3- version : 0.0.11
3+ version : 0.0.12
44author :
huminios <[email protected] > 55homepage : https://www.jiguang.cn
66
You can’t perform that action at this time.
0 commit comments