79543214

Date: 2025-03-29 12:08:55
Score: 0.5
Natty:
Report link

It seems be caused in dark theme, so you should change color if isSystemDarkTheme() or not.

    val textColor = if (isSystemInDarkTheme()) {
        Color.White
    } else {
        Color.Black
    }

    BasicTextField(
      // ..
      textStyle = LocalTextStyle.current.copy(color = textColor),
    )
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Takuya Matsuda