Learn how to do pagination in flutter. We will load data from rest api and using ListView.builder to show the data. We will bring different pages and we will also define how much data to bring each time. Pagination is all about using conditional blocks retrieve data from server. int _page = 0; final int…
Month: July 2022
Flutter Complex UI
Let’s take a look at this complex ui using flutter Stack, Row and Column. We also used Positioned widget. Without Positioned widget, elements would be overlapping in the center of stack widget. With Positioned widget, we can specify where to put a certain widget. You need to replace the icon with Flutter icon or with…
Flutter Barcode Generator
Learn how to use barcode and generate barcode in Flutter. You can use it anywhere inside your stateful or stateless class. Use it inside the body or a container. The work is done using BarcodeWidget(), and it takes some properties. It’s a plugin which you can download from pub.dev barcode_widget: ^2.0.2 The complete app could…
Beautiful UI Stack Widget
We used stack widget to make the over lap of plane and dots for ticket ui in flutter. The widgets are much this kind of UI designs are Expanded, Stack, LayoutBuilder, Flex and Transform Widget. The above widgets usage combination could be difficult, so strong suggest to understand how they work together. Watch video many…