replyAvatar method

Widget replyAvatar(
  1. BuildContext context
)

Implementation

Widget replyAvatar(BuildContext context) {
  // TODO height is solid, so make it flexible.
  // debugPrint("post.record.text.length: ${post.record.text.length}");
  return Column(children: [
    Avatar(context).net(parent.author).profile,
    Container(
        width: 1,
        height: 70,
        decoration: const BoxDecoration(
          color: Colors.grey,
        ))
  ]);
}