https://kotlinlang.org logo
#multiplatform
Title
# multiplatform
k

kpgalligan

08/20/2018, 6:36 PM
🐶 1
👏 8
a

agrosner

08/20/2018, 6:47 PM
just downloaded it on iOS 🙂
l

louiscad

08/20/2018, 6:59 PM
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

kpgalligan

08/20/2018, 7:02 PM
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

Sam

08/20/2018, 7:11 PM
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

kpgalligan

08/20/2018, 7:42 PM
Will take a look at that
r

russhwolf

08/20/2018, 8:05 PM
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

kpgalligan

08/20/2018, 8:09 PM
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

Sam

08/22/2018, 3:01 PM
Looks good!
5 Views