Slide 52
Slide 52 text
© ZOZO, Inc.
52
5. 引数パラメーター - Slot parameter
https://android.googlesource.com/platform/frame
works/support/+/androidx-main/compose/docs/co
mpose-component-api-guidelines.md#slot-paramet
ers
@Composable
fun Button(
onClick: () -> Unit,
text: String? = null,
icon: ImageBitmap? = null
) {}
@Composable
fun Button(
onClick: () -> Unit,
text: String? = null,
fontStyle: FontStyle? = null // add
icon: ImageBitmap? = null
) {}
@Composable
fun Button(
onClick: () -> Unit,
text: String? = null,
fontStyle: FontStyle? = null
icon: ImageVector? = null, // change
) {}
BAD