Slide 14
Slide 14 text
© ZOZO, Inc.
CustomViewの便利な使い方
14
class HogeCutomView @JvmOverloads constructor(
context: Context,
attrs: AttributeSet? = null,
defStyle: Int = 0
) : AbstractComposeView(context, attrs, defStyle) {
var selectedDate by mutableStateOf("")
@Composable
override fun Content() {
HogeWithPager(
selectedDate = selectedDate
)
}
}