Skip to content

Commit

Permalink
Merge pull request #243 from SayedZeeshanHyder/main
Browse files Browse the repository at this point in the history
Updated Announcement Screen traversal Index
  • Loading branch information
SayedZeeshanHyder authored Jul 28, 2024
2 parents 6aad74d + c3da00b commit 8b3a39c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class _AnnouncementScreenState extends ConsumerState<AnnouncementScreen> {
return ListView.builder(
itemCount: announcements.length,
itemBuilder: (context, index) {
final announcement = announcements[index];
final announcement = announcements[(announcements.length-1) - index];
final listTile = AnnouncementListItem(
announcementModel: announcement,
);
Expand Down

0 comments on commit 8b3a39c

Please sign in to comment.