Added padding also to Divider

This commit is contained in:
dankito 2024-09-05 02:29:13 +02:00
parent 3ff2dc29be
commit e06e84e6ff
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ fun <T> AutocompleteTextField(
}
if (showDividersBetweenItems && index < suggestions.size - 1) {
Divider(color = Colors.Zinc200, thickness = 1.dp)
Divider(color = Colors.Zinc200, thickness = 1.dp, modifier = Modifier.padding(horizontal = 8.dp))
}
}
}