Answers for "how to make max height container flutter"

0

how to make max height container flutter

new ConstrainedBox(
  constraints: new BoxConstraints(
    minHeight: 35.0,
    maxHeight: 60.0,
  ),
  child: ...child with growing content (has default height 25.0)...
),
Posted by: Guest on June-24-2021

Code answers related to "how to make max height container flutter"

Browse Popular Code Answers by Language