flutterindentationbulletedlist

Flutter: Is there a way to display multi bulleted list?


How do you display a list like this in flutter?

enter image description here

Like for numbers no indentions, for "*" 1 indention, "o" 2 indentions and so on.


Solution

  • There is no such mechanic built into Flutter. I'm not sure how many lists you want to display, how long the lists can be and where the data is coming from.

    flutter_markdown is a good solution if you also need paragraphs and other text styles. Just supply your list in markdown format to the widget.

    You can also build an indented list with Flutter core widgets: