Category

Flutter Examples for Beginners
Flutter List With Different Items: In this tutorial, we are going to create a List that displays a different type of content. For example, the main heading has a list of related subheadings. Now in this tutorial, we are creating such type of list that has different types of main and sub list to display...
Read More
Creating a Grid List in Flutter: In most of the times, we have to display items or data in Grid List. for example, e-commerce product list, different types of image sizes whenever required to display. Now in this tutorial, we are going to create a Grid List in Flutter. To create Grid List we are...
Read More
Creating a Horizontal List in Flutter: In this tutorial we are going to create a horizontal List means that list will be displayed in horizontally and we can scroll this list horizontally in flutter App. To create Horizontal List we are using ListView widget.  this ListView widget supports to create a Horizontal List. In this...
Read More
Flutter Basic Lists: In this tutorial, we are going to learn about lists, that are useful for displaying data in mobile Apps. In Flutter we are using ListView to create Lists in Flutter App. Creating a ListView: Use the ListView constructor to create lists, this constructor contains few lists of items, We also use built-in...
Read More
We all know that,  we need a different fonts to use in App for better design for this we can use it in two different ways. declaring a font as part of an app. declare a font as part of a separate package It is better to declare a font as part of a separate...
Read More
In Flutter App to share colors and font styles throughout the app, we can use themes to perform this  in Flutter App. In Flutter there are two ways to define themes: App-wide or using Theme Widgets that define the colors and font styles for a particular part of our application. In fact, app-wide themes are just Theme Widgets created...
Read More
We all know that Container class provides a convenient way to create a widget with specific properties: width, height, background color, padding, borders, and more. Simple animations often involves changing these properties over time. For example, you may want to animate the background color from blue to orange to indicate that an item has been selected by the...
Read More
Flutter Reading and Writing Files: We already know that,  to read and write files to disk. This can be used to persist data across app launches and some times we are downloading data from the internet and saved it in our laptop/any external device to use it for later offline use when the internet is...
Read More
Retrieve the value of a text field : the Previous example, we have discussed entering the input text to the text field and validating that text field if it is empty. Now in this example, we are going to discuss how to retrieve the entered input value/text. Follow the Below steps to retrieve  entered input...
Read More
Creating a form with validation: Nowadays, in general, we are filling online forms for applying any post in general govt or private sector. Forms are verified before submitting and if any field left blank that will also be notified when we submit the form. Today we are going to discuss validating the form by providing...
Read More
1 2

Categories