skip to Main Content

i need to remove this text over flow in flutter. how can i do that?

I am facing error in the Text widget which is in Column. body: Padding( padding: const EdgeInsets.all(20), child: Column( mainAxisAlignment: MainAxisAlignment.spaceAround, children: [ Row( mainAxisAlignment: MainAxisAlignment.spaceAround, children: [ Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ Text( widget.songModel.displayNameWOExt, <------- here is my text…

VIEW QUESTION

Flutter: RenderFlex overflow when using column

I'm getting a renderflex overflow error which displays as the following: It's coming from the following code: return Column( children: [ DropdownButton<String>( items: Utils.ddsDropdown .map<DropdownMenuItem<String>>((String value) { return DropdownMenuItem<String>( value: value, child: Text(value), ); }).toList(), onChanged: (value) {}), ListView.builder( shrinkWrap:…

VIEW QUESTION
Back To Top
Search