```interface Checkout{ @Composable fun screen() }``` how to implement this Checkout in ios proje...
p
Copy code
interface Checkout{
  @Composable
  fun screen()
}
how to implement this Checkout in ios project
🤔 2
z
Have an
Copy code
@Composable
expect fun CheckoutScreen()
In common And implement the actual in iOS and Android.