Droidcon NYC app published to iOS app store! <http...
# multiplatform
k
🐶 1
šŸ‘ 8
a
just downloaded it on iOS šŸ™‚
l
Just installed it on my iPad. Good job! However, the color scheme is not ideal for readability. Black status bar text and icons on dark blue background is not either. Hope you can improve on this! šŸ™‚
k
The status bar issue is something with material components and the way we’ve wired it in. If I get some time will try to figure that out.
s
It’s probably related to an entry in your info.plist for the status bar appearance and whether your view controller is returning the right enum for the preferredStatusBarStyle property. Note: if you’re using containment iOS will only query the top level view controller for the status bar style. Built in containers like UITabBarController and UINavigationController need to be subclasses and this property overwritten to return the proper style for the active view controller in these containers.
šŸ‘ 1
k
Will take a look at that
r
I’d love to chat re your kotlin 1.3 library version needs, but realistically won’t have time to do much this week, so feel free to continue maintaining your multiplatform-settings fork for now. I’ve largely been sticking to ā€œstableā€ versions but maybe that doesn’t really matter when a lot of the underlying stuff is still experimental anyway.
k
The different libs need different changes. For the most part, from a compiling standpoint, the 'konan' name is going away, so native-specific packages have changes. I'm trying to stay out in front of it in hope that we see multithreaded coroutines soon. There is a branch in the kotlinx.coroutines lib for multithreaded, and its actually on an older K/N version, so maybe keeping on the bleeding edge isn't a good idea, but anyway...
@Sam Thanks for the info. I wound up just doing config in app delegate after changing the setting in info.plist. That works, and all of the headers are dark, so no need to control individually.
šŸ‘ 1
s
Looks good!