ByAhmadDecember 20, 2024How to solve ‘RenderBox was not laid out:’ in Flutter in a Card Widget Conclusion In this blog post, we will explore how to fix the ‘RenderBox was not laid out:’ error that…flutterflutter-cardflutter-layoutflutter-stateflutter-widget
ByAhmadDecember 20, 2024How to add icon to AppBar in Flutter In Flutter, the AppBar is a common widget used at the top of many screens. It’s a great…flutter-appbarflutter-iconflutter-widget
ByAhmadDecember 20, 2024How do I do the “frosted glass” effect in Flutter? The “frosted glass” effect is a visual design element that resembles a frosted glass surface, often used to…flutter-animationflutter-webflutter-widget
ByAhmadDecember 20, 2024Flutter: How do you make a card clickable? In the world of Flutter, creating user interfaces is very easy. With its simple syntax, developers can quickly…flutterflutter-tapableflutter-widget
ByAhmadDecember 20, 2024Passing Data to a Stateful Widget in Flutter In this article, we will discuss the best practices for passing data to a stateful widget in Flutter.…flutterflutter-stateflutter-widget
ByAhmadDecember 20, 2024Custom AppBar Flutter In the world of Flutter, the AppBar is a crucial part of any app’s layout. It serves as…flutter-appbarflutter-packagesflutter-widget
ByAhmadDecember 16, 2024Pass a Function with Parameters to a VoidCallback The VoidCallback declaration is: typedef void VoidCallback(); This is the type of functions that can be called with…flutter-packagesflutter-widget
ByAhmadDecember 16, 2024How to Change TextField Underline Color? In Flutter, the default underline color of a TextField is determined by the current theme’s accent or primary…flutter-textformfieldflutter-widget
ByAhmadDecember 15, 2024When the keyboard appears, the Flutter widgets resize. How to prevent this? In a typical mobile application, when you tap on an editable text field or a widget that requires…Flutter Layoutflutter-widgetState Management
ByAhmadDecember 15, 2024setState() or markNeedsBuild called during build Conclusion In my case I was calling the setState method before the build method had completed the process of…flutter-widgetState Management