Results 85 comments of Sean Proctor

Typically when you click down on a button, you can move the mouse around on that button and when you release, the `onClick` handler will be called. When using `ModalNavigationDrawer`,...

I'll throw my 2 cents in here. The data table implementation in early dev versions of Compose was removed because it relied on APIs that were being removed. I've ported...

I can resolve this by adding a dependency to "co.touchlab:stately-iso-collections" to my jsTest target. The problem exists in 1.2.2 and 1.2.3. 1.2.2 was working for me previously, I think I...

I'm sorry to have taken so long to respond to this. The JS target for my project got put on hold for a while, and I didn't have time to...

Ah, perfect, thanks! Ignore my previous comment.

I think this is a duplicate of #477. I posted a workaround there.

I probably can't help, but maybe you can be more specific so someone who understands this better can help you.

I think I'm facing the same issue. A work-around was to add a dependency to `commonMain` to `jvmMain` like: ```kotlin val jvmMain by getting { dependsOn(commonMain) } ``` The works...