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: 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, 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
ByAhmadDecember 15, 2024Flutter BoxDecoration’s background color overrides the Container’s background color, why? In Flutter, when using a Container widget to display content, it is common practice to use the color…Flutter Layoutflutter-widget
ByAhmadDecember 15, 2024Flutter align two items on extremes – one on the left and one on the right In Flutter, when building user interfaces, it’s common to need to arrange widgets in a way that they…Flutter Layoutflutter-listviewflutter-widget
ByAhmadDecember 15, 2024Flutter align two items on extremes – one on the left and one on the right In Flutter, when you need to align two items on the extremes of a Row or Column widget,…Flutter Layoutflutter-listviewflutter-widget
ByAhmadDecember 15, 2024Flutter for Loop to Generate List of Widgets In Flutter, generating lists of widgets can be a bit tricky. However, with the introduction of the ‘for’…Flutter Layoutflutter-listviewflutter-widget
ByAhmadDecember 15, 2024How to create a modal bottomsheet with circular corners in Flutter? In this blog post, we will discuss how to create a modal bottom sheet in Flutter with circular…Flutter Layoutflutter-designflutter-widget
ByAhmadDecember 15, 2024Flutter onTap method for Containers Conclusion In Flutter, you can make any widget tappable by using the onTap property. However, when it comes to…Flutter Layoutflutter-containerflutter-sliverflutter-widget