frank-vu
01/07/2024, 5:14 AM@Composable
@JNav(
name = "CartScreenNavigation",
baseRoute = "cart_route",
destination = "cart_destination",
arguments = [
JNavArg(name = "productName", type = String::class),
JNavArg(name = "productId", type = Int::class),
JNavArg(name = "productPrice", type = Float::class)
]
)
fun CartScreen(
productName: String,
productId: Int,
productPrice: Float
) { }
dave08
01/07/2024, 10:31 AM