File tree Expand file tree Collapse file tree 3 files changed +10
-10
lines changed Expand file tree Collapse file tree 3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -346,7 +346,7 @@ class _ChatInfoScreenState extends State<ChatInfoScreen> {
346
346
);
347
347
} else {
348
348
alternativeWidget = Text (
349
- '${AppLocalizations .of (context ).lastSeen } ${Jiffy (otherMember .lastActive ).fromNow ()}' ,
349
+ '${AppLocalizations .of (context ).lastSeen } ${Jiffy . parseFromDateTime (otherMember .lastActive ! ).fromNow ()}' ,
350
350
style: TextStyle (
351
351
color: StreamChatTheme .of (context)
352
352
.colorTheme
Original file line number Diff line number Diff line change @@ -990,7 +990,7 @@ class _GroupInfoScreenState extends State<GroupInfoScreen> {
990
990
);
991
991
} else {
992
992
alternativeWidget = Text (
993
- '${AppLocalizations .of (context ).lastSeen } ${Jiffy (otherMember .lastActive ).fromNow ()}' ,
993
+ '${AppLocalizations .of (context ).lastSeen } ${Jiffy . parseFromDateTime (otherMember .lastActive ! ).fromNow ()}' ,
994
994
style: TextStyle (
995
995
color: StreamChatTheme .of (context)
996
996
.colorTheme
@@ -1082,7 +1082,7 @@ class _GroupInfoScreenState extends State<GroupInfoScreen> {
1082
1082
if (user.online) {
1083
1083
return AppLocalizations .of (context).online;
1084
1084
} else {
1085
- return '${AppLocalizations .of (context ).lastSeen } ${Jiffy (user .lastActive ).fromNow ()}' ;
1085
+ return '${AppLocalizations .of (context ).lastSeen } ${Jiffy . parseFromDateTime (user .lastActive ! ).fromNow ()}' ;
1086
1086
}
1087
1087
}
1088
1088
}
Original file line number Diff line number Diff line change @@ -4,16 +4,16 @@ publish_to: "none"
4
4
version : 2.2.0
5
5
6
6
environment :
7
- sdk : ' >=2.19 .0 <4.0.0'
7
+ sdk : ' >=3.0 .0 <4.0.0'
8
8
flutter : " >=3.7.0"
9
9
10
10
dependencies :
11
11
flutter_app_badger : ^1.5.0
12
12
flutter :
13
13
sdk : flutter
14
- stream_chat_flutter : ^6.8.1
15
- stream_chat_persistence : ^6.7 .0
16
- stream_chat_localizations : ^5.8 .0
14
+ stream_chat_flutter : ^6.9.0
15
+ stream_chat_persistence : ^6.8 .0
16
+ stream_chat_localizations : ^5.9 .0
17
17
flutter_local_notifications : ^15.1.0+1
18
18
flutter_svg : ^2.0.7
19
19
flutter_secure_storage : ^8.0.0
@@ -24,11 +24,11 @@ dependencies:
24
24
collection : ^1.17.1
25
25
sentry_flutter : ^7.9.0
26
26
flutter_slidable : ^3.0.0
27
- go_router : ^10.0 .0
27
+ go_router : ^10.1 .0
28
28
provider : ^6.0.5
29
29
video_player : ^2.7.0
30
- firebase_core : ^2.15.0
31
- firebase_messaging : ^14.6.5
30
+ firebase_core : ^2.15.1
31
+ firebase_messaging : ^14.6.6
32
32
33
33
dev_dependencies :
34
34
flutter_launcher_icons : ^0.13.1
You can’t perform that action at this time.
0 commit comments