textFieldWithLabelPadding

fun textFieldWithLabelPadding(start: Dp = TextFieldPadding, end: Dp = TextFieldPadding, top: Dp = TextFieldWithLabelVerticalPadding, bottom: Dp = TextFieldWithLabelVerticalPadding): PaddingValues

Deprecated

Renamed to `TextFieldDefaults.contentPaddingWithLabel`

Replace with

TextFieldDefaults.contentPaddingWithLabel(
        start = start,
        top = top,
        end = end,
        bottom = bottom,
    )