OudsBulletList
fun OudsBulletList(modifier: Modifier = Modifier, type: OudsBulletListType = OudsBulletListDefaults.Type, textStyle: OudsBulletListTextStyle = OudsBulletListDefaults.TextStyle, bold: Boolean = true, builder: OudsBulletListBuilder.() -> Unit)
Bullet list is a UI element that helps to view in related individual text items grouped together; items usually starting with a number or a bullet.
Bullet list is also known as “Unordered list” or “Ordered list” and is not an interactive element by default, although text items can support hypertext links.
Design
| Guidelines | unified-design-system.orange.com |
| Version | 1.0.0 |
Parameters
modifier
Modifier applied to the list.
type
The visual type of the list (e.g., ordered, unordered, bare). See OudsBulletListType.
textStyle
The typography style for the list items. See OudsBulletListTextStyle.
bold
Whether the list item text should be bold. This can be overridden for sub-lists. Defaults to true.
builder
A lambda scope using the OudsBulletListBuilder to define the list items.