File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -511,7 +511,8 @@ class FeedState extends AppState {
511
511
}
512
512
if (tweetReplyMap != null && tweetReplyMap.length > 0 ) {
513
513
if (tweetReplyMap[tweet.parentkey] != null ) {
514
- tweetReplyMap[tweet.parentkey].add (tweet);
514
+ /// Instert new comment at the top of all available comment
515
+ tweetReplyMap[tweet.parentkey].insert (0 , tweet);
515
516
} else {
516
517
tweetReplyMap[tweet.parentkey] = [tweet];
517
518
}
Original file line number Diff line number Diff line change @@ -118,9 +118,7 @@ class _SplashPageState extends State<SplashPage> {
118
118
/// To check current installed app version check [version] in pubspec.yaml
119
119
/// you have to add latest app version in firebase remote config
120
120
/// To fetch this key go to project setting in firebase
121
- /// Click on `cloud messaging` tab
122
- /// Copy server key from `Project credentials`
123
- /// Now goto `Remote Congig` section in fireabse
121
+ /// Open `Remote Config` section in fireabse
124
122
/// Add [appVersion] as paramerter key and below json in Default value
125
123
/// ``` json
126
124
/// {
You can’t perform that action at this time.
0 commit comments