rafalbednarczuk

Results 22 comments of rafalbednarczuk

Does it work fine on version 1.0.1?

This bug is probably due having a duplicated menu button widget, animation requires an active item and a non-active item while animating. Feel free to open a PR.

Hey, thanks for pull request. There are some problems: - if shadow param isn't set there is exception - items are positioned lower than in latest 0.2.20 version - box...

Wrap it with `Container` and set `Container`'s width

Okay, I see. I'm open for pull requests in this case.

for sure it would be possible, but there are many issues with it, feel free to make pull request :)

``` fun main() { println(isNullable()) println(isNullable()) } inline fun isNullable(): Boolean = null is T ``` This is how to know if type is nullalble or not. Null check for...

@cowtowncoder Does this new feature require changes on `jackson-core` level or only `jackson-module-kotlin` level? `TypeReference` class is inside `jackson-core`. I think this feature is required only by Kotlin devs. Java...

@cowtowncoder What do you think of modifying readValue functions? Here is working example snippet. I can make pull request for all functions. ``` fun main() { val json = "null"...