Answers for "flutter container expand auto"

0

flutter container expand auto

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 May-27-2021

Code answers related to "flutter container expand auto"

Browse Popular Code Answers by Language