Answers for "how to make a container with width and height and overlaycolor flutter"

2

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 , ),

  ),],),)
Posted by: Guest on November-03-2021
6

flutter container width of parent

width: double.infinity,
  height: double.infinity
Posted by: Guest on January-11-2021

Code answers related to "how to make a container with width and height and overlaycolor flutter"

Browse Popular Code Answers by Language