mikehearn
04/24/2023, 4:52 PMjw
04/24/2023, 5:03 PM@Composable fun Thing(
foo: String = "foo",
bar: String = "bar",
) {
// ...
}
@Deprecated("", level = HIDDEN)
@JvmName("Thing")
@Composable fun OldThing(
foo: String,
) {
Thing(foo)
}
This is a general Kotlin problem for any library, though, right?mikehearn
04/24/2023, 5:09 PMjw
04/24/2023, 5:14 PMmattinger
04/24/2023, 11:33 PMjw
04/24/2023, 11:37 PM