Blog

Flutter Bloc

Flutter Bloc: The Bloc stands for Business Logic Component. it is a pattern created by Google and announced at Google I/O ‘. The BLoC pattern used to handle the flow of data within the app. You add streams of event/data input into a Sink and listen to them as streams of data output through a Stream. Why Bloc? Bloc used […]

Flutter SMS & MMS

Flutter SMS & MMS: In this tutorial, we are going to learn to send SMS & MMS in Flutter. In our daily life, it is very important that sending SMS and MMS and receiving SMS and MMS is a part of our life. sometimes we are receiving OTP (one-time passwords) through SMS to verify the […]

Flutter Mobile Sidebar

Flutter Mobile Sidebar: In this tutorial, we are going to learn to create a mobile sidebar in Flutter. A sidebar is exactly what it contains like. It contains an important piece, important categories or text that describes a longer article in a publication such as a magazine or newspaper or e-commerce product categories, etc.  A sidebar always appears on the side of […]

Flutter Dots Indicator

Flutter Dots Indicator: In this tutorial, we are going to learn about Flutter Dots Indicator used for indicating the particular page. Flutter Dots Indicator is used to show a particular page when we move from one page to another page.  It shows as a series of small indicator dots, that represents the available pages in the order they were opened. […]

Flutter Page Indicator

Flutter Page Indicator: Flutter Page indicators are the dots placed at the top  OR bottom of the screen of the mobile. To select one of the two-page indicator types, depending on whether or not the pages can be navigated with a rotary action performed using the Flutter page indicator dots. when we navigate the pages the dots change […]

Flutter Linkify

Flutter Linkify: In this tutorial, we are learning to create clickable links as URLs using Flutter Linkify class. Using clickable hyperlink, or simply a link is a reference to data that the reader can be directed by clicking the given URL. The clickable hyperlinks are used to redirect the user.  we are using the clickable links to […]

Flutter Load More

Flutter Load More: In this tutorial, we are going to create Flutter load more functionality. We all know that whatever apps we are using nowadays are having a large amount of data fetching over the network remotely from the server and loads dynamically when we scroll down the screen of the app for this functionality […]

Flutter Infinite List view

Flutter Infinite List view: In this tutorial, we are going to study creating a Flutter infinite list view. List view is used to create a list of products for e-commerce OR list of data to display when we scroll down it loads the data or list of the products. Using flutter infinite list view we can […]

Flutter Statusbar

Flutter Statusbar: In this tutorial, we are going to learn to create flutter status bar. Flutter status bar is a graphical user interface it control element used to display certain status information depending upon the application or device. the status bar is displayed at the top of the screen for tablets and smartphones. Implementing the Flutter […]

Flutter Auto Orientation

Flutter Auto Orientation: In this tutorial, we are going to create Flutter Auto Device Orientation to the landscape from portrait and vice versa automatically when we rotate the android OR IOS device it sets it’s orientation automatically here we no need to select the device. The Flutter auto device orientation works for both Android and IOS […]