Added padding also to Divider
This commit is contained in:
parent
3ff2dc29be
commit
e06e84e6ff
|
@ -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))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue