Omico

Results 33 comments of Omico

see https://github.com/material-components/material-components-android/commit/ba696b698468429b91c0e33a91b0526dc4700618#diff-e4e6bbe5d1d0c16b9cb3b58a53a0bb22L62 `implementation 'com.android.tools.build:gradle:3.2.0-rc02'` `implementation 'com.google.android.material:material:1.0.0-rc01'` I think we should change `@style/TextAppearance.MaterialComponents.BottomNavigationView.Colored` to `@style/Widget.MaterialComponents.BottomNavigationView.Colored`

Hello, a very interesting thing has just been introduced to the DSL support library I wrote for kotlinpoet. Generate DSL source code directly through Kotlin PSI Elements via reading kotlinpoet's...

> Personally I want to get rid of this file at all and move the implementation just below the Database interface with private accessor and also remove the `KClass` hack....

@Schahen I'm facing the same thing in `1.6.0-rc01`, `1.6.0-beta02`, `1.5.12`, and `1.5.11`; not sure about the other versions.

Hi @badmannersteam, thanks for your info. I realize that the latest Temurin 17 on Winget is only 17.0.9.9. When I checked the source code, I found that the patch you...

Hi @mazunin-v-jb, https://github.com/Omico/compose-multiplatform-omico I created this project hoping it could provide a little help with this problem, but I can't actively develop it due to personal reasons. But my ambition...

@eymar It cannot be reproduced stably, but it will break my CI from time to time after upgrading. https://scans.gradle.com/s/43zyx7dja22yc

> Probably it is #4773. The solution is in the comments Not sure what's going on. https://scans.gradle.com/s/mmlzuzbvgolgo https://scans.gradle.com/s/gqynlmhckpdbg It took a long time to debug. Something wrong with 1.6.10-beta03. https://github.com/JetBrains/compose-multiplatform/compare/v1.6.10-beta02...v1.6.10-beta03

I wrote something similar, see here. https://github.com/Omico/intellij-powershell/blob/e4c2f98d3f0b879ddd9572f70f908a0ca10d479c/build.gradle.kts#L109 But now I prefer to move this part of the code into `build-logic` and get the new version through my project [Gradm](https://github.com/Omico/Gradm). A...

Since it is a Swing API, we only need to set it once. Check this out. ``` Window(...) { setMinimumSize( width = 360.dp, height = 640.dp, ) } ``` ```...