Using HTML I can add a bullet points to a paragraph like this:
<ul>
<li> example </li>
<li> example </li>
<li> example </li>
<ul>
How can I write bullet point form in Flutter?
new Text(''),
Using HTML I can add a bullet points to a paragraph like this:
<ul>
<li> example </li>
<li> example </li>
<li> example </li>
<ul>
How can I write bullet point form in Flutter?
new Text(''),
Using markdown for this is overkill. Using
•
character is by far easier.If you're too lazy to copy paste the character, here's a custom
Text
that does it for you:I tried using flutter_markdown and it seems to work. And of course you can change it to numbered/ordered or unordered list as you want.
I would better use utf-code. For list I think more comfortably will be something like: