CATEGORIES
>>
Dart(2)
>>
Errors(5)
>>
Android(11)
>>
Errors(1)
>>
Errors(2)
>>
Windows 8(3)
>>
iPhone7(1)
>>
Errors(4)
>>
Html(1)
RECOMMENDED SITES
Flutter Row's children must not contain any null values
You can use SizedBox(height: 0,) instead of null widget.
Problem
Fix
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: 906
COMMENTS
No comments yet. Be the first to comment who you are.