From what I have seen prefixes like “is” and “has”...
# compose
a
From what I have seen prefixes like “is” and “has” are rarely used any longer. Has this change come with Kotlin or Compose? Eg.
Copy code
@Composable
fun MyComponent(isEnabled: Boolean, isPressed: Boolean, isFocused: Boolean) {
    // code
}
Are there specific guidelines regarding naming of
params
? 🧵
👀 1
I’ve been looking at the Compose guidelines here and they recommend
isChecked
so this got me confused.
t
I wonder the same and I couldn't find the answer... Have you found the answer?
a
Nope, unfortunately not.
🥴 1