You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A common issue I find is when using a when in a composable and not propagating the modifier parameter to all branches, typically when a new branch is added. For example:
I'd like to see a warning/error on the is SomeViewState.Loading -> SomeScreenLoadingContent() branch saying that you probably want to pass the modifier parameter. The exception is if the composable doesn't accept a modifier.
The text was updated successfully, but these errors were encountered:
A common issue I find is when using a
when
in a composable and not propagating themodifier
parameter to all branches, typically when a new branch is added. For example:I'd like to see a warning/error on the
is SomeViewState.Loading -> SomeScreenLoadingContent()
branch saying that you probably want to pass themodifier
parameter. The exception is if the composable doesn't accept a modifier.The text was updated successfully, but these errors were encountered: