bulletList
fun bulletList(items: List<String>, bullet: String = "•", markerWidth: Dp = 16.dp, spacing: Dp = 4.dp)
Appends a vertical bulleted list — one row per item, each consisting of a bullet marker and the item text on the same line. Wrapping text in an item indents continuation lines under the first text line, not under the bullet, which matches the typical typographic convention for prose lists.
Parameters
items
one entry per list row.
bullet
character (or short string) drawn before each item. Defaults to a Unicode bullet (•).
markerWidth
width reserved for the marker column. Larger values make wider visual gutters; smaller values pack the bullet close to the text. Defaults to 16.dp.
spacing
vertical gap inserted between consecutive list rows.