// Get the list of comments for the specified post id
        private async void LoadCommentsData(int PostId)
        {
            CommentsList.Clear();

            List <Comment> comments = await dataRetriever.GetCommentsForPost(PostId);

            LoadingIndicator.IsRunning = false;
            LoadingIndicator.IsVisible = false;
            CommentsListView.IsVisible = true;

            foreach (Comment c in comments)
            {
                CommentsList.Add(c);
            }
        }