Fernando
03/20/2025, 10:29 AMHomeScreen(
state = HomeUIState(
projects = mapOf(
Platform.Android to emptyArray(), Platform.iOS to emptyArray()
)
), navigateToSettings = {}, navigateToProject = {})
To this (separated parameter lines)
HomeScreen(
state = HomeUIState(
projects = mapOf(
Platform.Android to emptyArray(), Platform.iOS to emptyArray()
)
),
navigateToSettings = {},
navigateToProject = {}
)
I know there's IDE options to set separated lines, etc. But is there any a .editorconfig
or a standard formatter with the best practices for Compose 🤔Chrimaeon
03/20/2025, 11:40 AM