reactions property

Widget get reactions

Implementation

Widget get reactions {
  return Row(mainAxisAlignment: MainAxisAlignment.start, children: [
    button(reaction.reply, context.read<ThreadReactionState>().reply),
    button(reaction.repost, context.read<ThreadReactionState>().repost),
    button(reaction.like, context.read<ThreadReactionState>().like),
    button(reaction.more, context.read<ThreadReactionState>().more),
  ]);
}