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
ByAhmadDecember 15, 2024Flutter: ListView disable scrolling with touchscreen In some scenarios, you might want to prevent users from scrolling a list view using their touch screen.…flutter-listviewflutter-widgetState Management
ByAhmadDecember 15, 2024Flutter Apps are Too Big in Size In recent times, there has been a growing concern among developers regarding the size of Flutter apps. The…flutter-packagesflutter-sliverState Management
ByAhmadDecember 15, 2024How to add a ListView to a Column in Flutter? In Flutter, when you want to add a ListView inside a Column widget, you might encounter an error.…Flutter Layoutflutter-listview
ByAhmadDecember 15, 2024Flutter: Filter List as Per Some Condition In this blog post, we will discuss how to filter a list in Flutter based on some condition.…Flutter Layoutflutter-appbarflutter-futurebuilderflutter-imageflutter-listviewflutter-packagesflutter-pluginflutter-sliverflutter-widget
ByAhmadDecember 15, 2024Pass a function with parameters to a VoidCallback The declaration of VoidCallback is typedef void VoidCallback(); That is the type of functions that can be called…Flutter Layoutflutter-packagesflutter-pluginflutter-widget
ByAhmadDecember 15, 2024Flutter – How to make a column screen scrollable In Flutter, there are several ways to create a scrollable column. In this post, we’ll explore the most…Flutter Layout
ByAhmadDecember 15, 2024How to implement CheckBox in Flutter? In this article, we will discuss how to use the checkbox widget in flutter. The checkbox is a…Flutter Layout
ByAhmadDecember 15, 2024How to hide soft input keyboard on Flutter after clicking outside TextField/anywhere on screen? In many mobile applications, there’s a common issue where the soft keyboard persists even after the user clicks…Flutter Layoutflutter-textformfieldflutter-widget