Flutter Row's children must not contain any null values
 
You can use  SizedBox(height: 0,) instead of null widget.

Problem
Row(
        children: [
          null,
		  Text("Title"),
        ],
      ),


Fix
Row(
        children: [
          SizedBox(height: 0,),
		  Text("Title"),
        ],
      ),

 

Author: Engin ATALAY
Date: 6.02.2021 13:58:29
View Count: 773
 
 

COMMENTS
 
No comments yet. Be the first to comment who you are.
 
 
 
 
 
 
 
WRITE COMMENT
 
 
Your Name :
 
 
 
E-mail :
 
 
 
Your Message :
 
 
 
 
 
 
 
This project : ASP.NET MVC , RAZOR, Entity Framework , CSS , HTML , JQUERY(2.0.2) , AJAX the C# side-tier architecture was developed with logic.
 
Yukarı Çık