build method

  1. @override
Widget? build(
  1. BuildContext context
)
override

Implementation

@override
Widget? build(BuildContext context) {
  return Row(
    children: [
      const SizedBox(width: 70),
      const Icon(Icons.repeat, color: Colors.grey, size: 14),
      sizeBox,
      Text(
          tr('reposted.by',
              args: [actor.displayName ?? getAccount(actor.handle)]),
          style: const TextStyle(
              color: Colors.grey, fontWeight: FontWeight.bold))
    ],
  );
}