In many flutter application while developing we will get error like "A RenderFlex overflowed by XX pixels on the bottom" How to fix this error? This exception will come because there is no enough space to set the widget with given size. This will thorwn error "A RenderFlex overflowed by XX pixels on the bottom" To fix this error i have added icon widget inside Expand widget. So what is Expand widget? Expand widget is Creates a widget that expands a child of a [Row], [Column], or [Flex] so that the child fills the available space along the flex widget's main axis Now the code looks like below
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: Text("OverFlow Error"),
),
body: Container(
child: Column(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.center,
children: <Widget>[
Icon(Icons.face, color: Colors.orange, size: 800.0),
]),
)),
);
}
}
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: Text("OverFlow Error"),
),
body: Container(
child: Column(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.center,
children: <Widget>[
Expanded(child: Icon(Icons.face, color: Colors.orange, size: 800.0)),
]),
)),
);
}
}
How can i get document id in Flutter Firestore?
How to check the given value is a number or not in dart?
How do I supply/set an initial value to a text field in Flutter ?
Flutter Questions and Answers
Fix Scaffold.of() Called Without Scaffold Exception - RRutors
How to find the Screen orientation in flutter
How do we save the data in browser's cookies using the Flutter web?
How to change the application launcher icon on Flutter?
How to make a widget Center vertically inside a SingleChildScrollView
How can i use hexadecimal color code in Flutter?
How does Flutter load images?
How do i make CachedNetwork image as rounded circle in flutter?
How do i make circular icon Inside Button ?
Flutter - Vertical Divider - How to add Vertical Divider?
How do i change the OutlineInputBorder color?
How to remove debug banner in flutter?
How to create Gradient background for AppBar in Flutter
Fix Navigator Context Issue in Flutter with RRutors
How do i make TextButton full width in flutter?
Fix MissingPluginException Error in Flutter with RRutors
How to handle the code after showDialog is dismissed in Flutter?
OS Error: A required privilege is not held by the client errno = 1314
Can we use Container color and decoration properties at once?
How to copy text from Text Widget flutter?
How to convert a String value to double in flutter?
How do I open a web browser (URL) from my Flutter code?
What corresponds to Intent in Flutter?
How to navigate to new screen without back screen
Fix Flutter Null Safety Issue with RRutors
Fix MediaQuery.of() Error in Flutter with RRutors Guide
How to deactivate back button in flutter?
Fix Flutter Bottom Overflowed Error in Your App - RRutors
How to create Toast in Flutter?
How to display snackbar infinite duration in a flutter application
How to change package name in flutter?
What is Flutter?
Vertical Divider is Not Showing in my Flutter Application
How to Close Flutter application Programmatically?
How to make shadow for Container widget Flutter?
How to place a listview inside a SingleChildScrollView but prevent them from scrolling separately?