Created
          June 17, 2020 13:00 
        
      - 
      
- 
        Save emiliodallatorre/53ba14c10bcf263611d45abf15a06ccc to your computer and use it in GitHub Desktop. 
    Widget per la riga del titolo superiore ai post
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | 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