Answers for "flutter don;t assign height to container"

1

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
2

flutter container height 100 percent

MediaQuery.of(context).size.height * 0.25
Posted by: Guest on June-19-2020

Code answers related to "flutter don;t assign height to container"

Code answers related to "Dart"

Browse Popular Code Answers by Language