quotePost function

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

Implementation

List<Widget> quotePost(BuildContext context, feed.Post post) {
  return [
    embedBox(paddingLR([
      Avatar(context).net(post.author).profile
    ], [
      Header(author: post.author, createdAt: post.record.createdAt),
      Body(post: post),
    ]))
  ];
}