Skip to content

Instantly share code, notes, and snippets.

@emiliodallatorre
Created June 17, 2020 13:00
Show Gist options
  • Save emiliodallatorre/53ba14c10bcf263611d45abf15a06ccc to your computer and use it in GitHub Desktop.
Save emiliodallatorre/53ba14c10bcf263611d45abf15a06ccc to your computer and use it in GitHub Desktop.
Widget per la riga del titolo superiore ai post
return Row(
children: <Widget>[
CircleAvatar(
backgroundImage: CachedNetworkImageProvider(
post.author.photoUrl,
),
),
Expanded(
child: Text(post.author.displayName),
),
Text(format(post.dateTime)),
IconButton(
icon: Icon(Icons.more_vert),
onPressed: showMenu,
),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment