1

The indentation change from 4 to 8, how to convert it back to 4?

@Composable
fun <T> ListContent(
    modifier: Modifier = Modifier  // The indentation I'd like to.
)

@Composable
fun <T> ListContent(
        modifier: Modifier = Modifier  // But the indentation actually I get.
)
ccd
  • 5,788
  • 10
  • 46
  • 96

1 Answers1

1

After setting code style of kotlin, everything work fine. (Preferences -> Code Style -> Kotlin -> Continuation indent -> 4)

ccd
  • 5,788
  • 10
  • 46
  • 96