build method

Widget build(
  1. State<StatefulWidget> state,
  2. ProfileView actor
)

Implementation

Widget build(State state, ProfileView actor) {
  FollowButton button = followButton(state, actor);
  Widget left = displayNameHandle(actor);
  Widget right = widget(button, actor);
  Widget transfer = Profile(actor: actor.did);
  return inkWell(state, actor, left, right, transfer);
}