mirror of
				https://gitlab.com/comunic/comunicmobile
				synced 2025-11-04 04:04:18 +00:00 
			
		
		
		
	Improve show more comments button
This commit is contained in:
		@@ -380,11 +380,14 @@ class _PostTileState extends State<PostTile> {
 | 
			
		||||
    );
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  Widget _buildShowMoreCommentsButton() => InkWell(
 | 
			
		||||
        onTap: () => setState(() => _maxNumberOfCommentToShow += 10),
 | 
			
		||||
        child: Padding(
 | 
			
		||||
          padding: const EdgeInsets.all(8.0),
 | 
			
		||||
          child: Text(tr("Show more comments")),
 | 
			
		||||
  Widget _buildShowMoreCommentsButton() => Material(
 | 
			
		||||
        color: Colors.transparent,
 | 
			
		||||
        child: InkWell(
 | 
			
		||||
          onTap: () => setState(() => _maxNumberOfCommentToShow += 10),
 | 
			
		||||
          child: Padding(
 | 
			
		||||
            padding: const EdgeInsets.all(8.0),
 | 
			
		||||
            child: Text(tr("Show more comments").toUpperCase()),
 | 
			
		||||
          ),
 | 
			
		||||
        ),
 | 
			
		||||
      );
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user