flutter

In this article, we will discuss the Selectable Text that is used in the flutter application. For these, we will use the SelectableText widget that helps us to select and copy the specific text with the help of Cursor. At first, we should know what is Selectable in a flutter. SelectableText Widget in Flutter allows the […]

Continue Reading  

In this article, we will discuss how to show and hide the widgets in flutter. For these, we will use the Visibility widget that helps us to show and hide the widget. At first, we should know what is visibility in a flutter. Visibility means Whether to show or hide a child. By the use […]

Continue Reading  

In many cases, we may need a UI element which can be dragged from one point to another point on the screen. So, for those cases, Flutter introduces Draggable widget. This widget allows the movement of widgets across the screen. When a widget is draggable, usually it needs to be dropped at a certain location. […]

Continue Reading  

In this article, we will discuss how to remove the duplicate from the list of objects by its property value. What shall we do today is to add one object model class name as a Student which includes the list of the duplicate name? The object model class includes the name of the student roll […]

Continue Reading  

In this article, we will discuss the use of the Form widget in flutter and also add validation to it. What shall we do today is to add two text fields i.e. one for email and another for password? First of all, we should know some basic information about the form widget. Forms are one […]

Continue Reading  

In this article, we will figure out how to solve “Bottom Overflow By XX.XX PIXELS error”, very commonly faced by Flutter Devs. It is simply the bottom overflow issue in a flutter. This issue mainly arises when the user opens the keyboard on both android and IOS devices. If we put multiple widgets or TextField […]

Continue Reading  

In these articles, we will discuss the fold method that are used in the dart and flutter. What shall we do today is add two textfield to the screen and add one Button to show their output result as a sum in the table by using a fold method. The Fold method Reduces a collection […]

Continue Reading  

In this article, we will discuss the Date and Time Picker in a flutter. What we shall do today is to add 3 buttons vertical on the screen. The first button is used to show the date picker and the Second button is used to show the timer picker and the third button is used to show […]

Continue Reading  

In this article, we will learn about how to Integrate Firebase in Flutter Applications. A complete mobile application needs features like Authentication, File Storage, Real-time database, Analytics, etc. To include this feature, it requires backend services. Developers need to write their own backend service which costs extra time and effort. So, there is a platform […]

Continue Reading  

A stepper is a widget that displays progress through a sequence of steps. It is basically used in filling the forms online. Steppers in Flutter are especially valuable on account of forms where one step requires another or where various steps should be finished to present the complete form. Stepper is useful if we have […]

Continue Reading