Why I got A RenderFlex overflowed by 8.0 pixels on the right With flutter?
Hello everyone I’m trying to display an alert with flutter bu I got this error: A RenderFlex overflowed by 8.0 pixels on the right. this is my code: return showDialog( context: context, barrierColor: Colors.transparent, builder: (context) { return AlertDialog( title: Flexible( child: Row(children: [ Text( ‘ Alert Dialog Title. $a ‘, ), Image.asset( ‘assets/alert.png’, scale:… Read More Why I got A RenderFlex overflowed by 8.0 pixels on the right With flutter?