replyPost function

List<Widget> replyPost(
  1. BuildContext context,
  2. Post post
)

Implementation

List<Widget> replyPost(BuildContext context, feed.Post post) {
  return [
    padding10(
        paddingLR([
          Avatar(context).net(post.author).profile
        ], [
          Header(author: post.author, createdAt: post.record.createdAt),
          Body(post: post),
        ]),
        left: 0,
        right: 0),
    const Divider(height: 0.5),
  ];
}