Travis Griggs
12/29/2022, 10:16 PMColton Idle
12/29/2022, 11:01 PMChris Sinco [G]
12/30/2022, 3:25 AMsvenjacobs
12/31/2022, 12:06 PMModifier
should be the first parameter of parameters with default values, after the last parameter without a default value. So for example:
@Composable
fun MyComposable(
text: String,
color: Color,
modifier: Modifier = Modifier,
subtitle: String? = null,
) { ... }
Travis Griggs
01/02/2023, 6:33 PMTravis Griggs
01/02/2023, 6:33 PM