-
I know - SwiftUI is the future but is there any support for UIKit? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
We have very minimal built-in UIKit support. Basically, just enough to fill in the blanks on missing SwiftUI functionality. For example, UIPasteboard. Note, of course, that since Skip doesn't intrude on the iOS side, you are free (and encouraged) to use whatever UIKit types you want within But do let us know, either in this thread or directly at [email protected], if you have particular UIKit needs that could be useful for skip-ui to provide. And as you can see with UIPasteboard, some things are fairly straightforward to implement on your own, so PRs are definitely welcome! |
Beta Was this translation helpful? Give feedback.
We have very minimal built-in UIKit support. Basically, just enough to fill in the blanks on missing SwiftUI functionality. For example, UIPasteboard.
Note, of course, that since Skip doesn't intrude on the iOS side, you are free (and encouraged) to use whatever UIKit types you want within
#if SKIP
block (see https://skip.tools/docs/platformcustomization/). This can be useful for integrating with components that we don't yet have any support for; but you'll need to figure out what to do on the Android side. For examples, see the Travel sample app's MapView and WebView.But do let us know, either in this thread or directly at [email protected], if you have particular UIKit needs that coul…