Blog – 2 Column & Sidebar

Flutter mobile apps can now easily use Google Mobile Ads

Flutter mobile apps can now easily use Google Mobile Ads

No one likes advertisements, especially on mobile devices where screen space is limited, but they are often a necessity to pay for development and server costs. Google’s Flutter framework is becoming a popular way to build cross-platform applications, but there are fewer options for advertising compared to native apps or websites. Flutter Google Mobile Ads…

Flutter Custom Radio Button with Custom Shapes

Flutter Custom Radio Button with Custom Shapes

Flutter development is becoming popular and more popular every day, due to its wide range of customization, custom widgets, and very easy-to-implement approach. Today we will learn how we can make flutter custom radio button with custom shapes like square containers, circle containers, or icons. I have tried to demonstrate the different methods so that…

Flutter SWIPE List Items (Like Whatsapp Message reply do)

Flutter SWIPE List Items (Like Whatsapp Message reply do)

Flutter Swipe List Item Tutorial We all have seen the WhatsApp swipe to reply feature, it looks very cool when swipe and a reply text field appears. We can also make the same animation, same left, right swipe (WhatsApp has only right swipe though) events in our flutter project. Here is a very nice library…

Flutter Mutillevel DropdownButton Tutorial with real data example

Flutter Mutillevel DropdownButton Tutorial with real data example

Flutter Multilevel Drop Down Tutorial Flutter DropdownButton is a very important component of flutter app development, no app can be complete without using flutter dropdown. In this tutorial, we will focus on multilevel Dropdown which means, there will be a hierarchy of Dropdowns or you can say a parent-child relationship of Dropdown. Flutter multilevel dropdown…

Flutter Signature Pad Tutorial

Flutter Signature Pad Tutorial

Now flutter is very common in the mobile app development world. Every developer or even clients know about it and its power. In a very short time, spam flutter is on every developer’s mind. The result is awesome, developers are making very good plugins to make development easy, fast and up to the mark. Today…

Learning Flutter Widgets, Widget 8 – PageView

Learning Flutter Widgets, Widget 8 – PageView

PageView class A scrollable list that works page by page. Each child of a page view is forced to be the same size as the viewport. You can use a PageController to control which page is visible in the view. In addition to being able to control the pixel offset of the content inside the PageView, a PageController also lets you…

Learning Flutter Widgets, Widget 7 – FloatingActionButton

Learning Flutter Widgets, Widget 7 – FloatingActionButton

FloatingActionButton Widget class A material design floating action button. A floating action button is a circular icon button that hovers over content to promote a primary action in the application. Floating action buttons are most commonly used in the Scaffold.floatingActionButton field. Use at most a single floating action button per screen. Floating action buttons should be used for…