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

how do i fix this error: RenderBox was not laid out: RenderRepaintBoundary#16fcb relayoutBoundary=up4 NEEDS-PAINT NEEDS-COMPOSITING-BITS-UPDATE – Flutter

I have an error that says: RenderBox was not laid out: RenderDecoratedBox#dbfd0 relayoutBoundary=up12 NEEDS-PAINT NEEDS-COMPOSITING-BITS-UPDATE. 'package:flutter/src/rendering/box.dart': Failed assertion: line 2001 pos 12: 'hasSize' How can i fix this error. I have looked at the other questions and didn't came to…

VIEW QUESTION
Back To Top
Search