This is a test post

The list is basically an arrangement of items in such a way that they look organized and easily accessible. The flutter list is more than just a normal list. Here are some types of lists available in flutter:
1. Grid List
2. Horizontal List

Mobile application’s fundamental display pattern is showing data in the form of a list. We can use a standard ListView constructor to achieve this goal for a fewer item containing list.
ListView constructor has ListTile widget
ListTile: A list tile contains one to three lines of text optionally flanked by icons or other widgets, such as checkboxes. The icons (or other widgets) for the tile are defined with the leading and trailing parameters.
Here in LIstTile two very important widgets are leading and trailing
leading: 
This widget is used to show something like an icon or logo or image in the left most of the list.
trailing: This widget is used to show items like icon, image or logo right most of the list.

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top