Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

flutter auto height container

Container(
    constraints: BoxConstraints(
    maxHeight: double.infinity,
),
child: Column(
children: [
  Text(
    'Hello flutter...i like flutter...i like google...',
    softWrap: true,
    style: TextStyle(
        color: Colors.white, fontSize: 20 , ),

  ),],),)
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #flutter #auto #height #container
ADD COMMENT
Topic
Name
9+7 =