skip to Main Content

Flutter – A RenderFlex overflowed using a virtual keyboard

I have a simple form that looks nice and works great. I removed unnecessary information: @override Widget build(BuildContext context) { return Form( child: Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ Text('Field1'), SizedBox(height: 24.0), Text('Field2'), SizedBox(height: 24.0), Text('Field3'), SizedBox(height: 24.0), Text('Field4'), SizedBox(height: 24.0),…

VIEW QUESTION
Back To Top
Search