Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

text should come below if space not available row flutter

//wrap with expanded which text you want to come below if space not availabe in top row
Row(
	mainAxisAlignment: MainAxisAlignment.spaceBetween,
    children: [
    Expanded(
    child: Text(
	    mainProduct.name,
    	),
    ),
    secondWidget(),
    ],
),
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #text #space #row #flutter
ADD COMMENT
Topic
Name
1+5 =