In this tutorial, we will learn how to add or create a bullet list in Flutter. In HTML you may have used "<ul>", "<Li>", "<ol>" tag to make bulleted list, but here in Flutter, you have no such widget. You have to make a custom bullet list. See the example below for more detail.
Row(
children:[
Text("\u2022", style: TextStyle(fontSize: 30),), //bullet text
SizedBox(width: 10,), //space between bullet and text
Expanded(
child:Text("Hello World", style: TextStyle(fontSize: 30),), //text
)
]
) //one bullet item
Here, we have a row where we have shown the bullet text at the leading, and after that, we have shown the text widget.
Here, we have the list of String, and we have used this array list of strings to populate items into a bullet list.