Overflow warning in AnimatedContainer adjusting height
问题 Example Using the CupertinoPicker, I want it to animate into view below a textinput, using the AnimatedContainer, but when it becomes visible, I get an overflow warning. From what I've seen you cannot adjust the size of the CupertinoPicker, only it's parent. Is there a better solution? Column( children: <Widget>[ buildTextField( field: 'limit', label: 'How Many Guests?', controller: TextEditingController( text: eventModel.event['limit']), onTap: () { showPicker.value = !showPicker.value; }, )