I think I need a "multiplatform-getting-started" channel, because this sounds like a very simple question. It probably shows I don't understand.
Where, and how, do I include a properly platform specific implementation of a function?
I've got a class "GuTime" marked as expected in /shared/src/commonMain. The Android version seems happy in /shared/src/commonAndroid, or probably even /app/src/<etc>, but what about the iOS version?
iOS doesn't have "systemtime" so I need an iOS route. I can't put that in /shared/src/commonIOS (can I?), and trying to put an "actual" class in /iOS/ complains about "actual".
Yes, I know there's a Kotlin time package on the way, but how "alpha" is it? And that would only help for this specific issue.