quotePost function
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),
]))
];
}