Flutter Designs

In this guide, we will learn how to implement the Paginated DataTable in Flutter. For these, we should learn what Paginated DataTable in flutter is. A material design data table that shows data using multiple pages. A paginated data table shows rowsPerPage rows of data per page and provides controls for showing other pages. Data is read […]

Continue Reading  

In this guide, we will learn how to implement the Stream Builder in Flutter. For these, we should know what a Stream Builder in flutter is. A widget that builds itself based on the latest snapshot of interaction with a stream. The StreamBuilder can listen to exposed streams and return widgets and catch snapshots of […]

Continue Reading  

In this guide, we will learn how to implement the Counter Badge in Flutter by using the external package name badges. The counter badge is very necessary for cart buttons, inbox buttons, and orders like UIThe counter badge is very necessary on cart buttons, inbox buttons, and orders like UI. Badges can be created using the […]

Continue Reading  

In this guide, we will learn how to implement the Chip in Flutter. Chip is a material design widget that comes built-in with flutter. It can simply be described as a compact element holding an icon and text, usually a rounded rectangle in the background. It can serve many purposes, like it can be simply used […]

Continue Reading  

In this guide, we will learn how to implement the Slidable in Flutter by using the external package name flutter_slidable. Slidable in an application can be used to perform a wide range of tasks with just a simple swipe to either right or left on the tile. It not only makes the UI very user-friendly […]

Continue Reading  

In this article, we will learn about changing the theme (Light/Dark mode) of an app by using custom options with Bloc. Bloc is a state management library that helps improve the code’s quality and makes handling states in the app much more manageable. Dynamic Theme means changing/updating themes on the fly from anywhere inside the app. […]

Continue Reading  

In this guide, we will learn how to implement the Alphabetical Scroll in Flutter by using the external package name  alphabet_scroll_view . A Scrollable ListView Widget with the dynamic vertical Alphabet List on the Side which you can drag and tap to scroll to the first item starting with that letter in the list. Related: Slivers […]

Continue Reading  

In this guide, we will learn how to implement the ExpansionTile in Flutter. A single-line ListTile with an expansion arrow icon that expands or collapses the tile to reveal or hide the children. This widget is typically used with ListView to create an “expand/collapse” list entry. This widget lets you create a detailed tile that can […]

Continue Reading  

As mobile developers, we sometimes have to create sliding, animated, background image carousels, but sometimes we require to create a sliding card carousel that contains some data with different background colors or gradients. In this guide, we will learn how to implement the Carousel Slider in a flutter.  Carousel Slider is one of the most […]

Continue Reading  

Flutter Backdrop Filter Widget is utilized to make blurring impacts on pictures, Containers, and every one of the widgets. Backdrop Filter widget is utilized with a mix of ImageFilter classes. It applies a filter on the current widget and makes the blur impact underneath the current widget. As far as anyone knows we have an image widget so we […]

Continue Reading