https://github.com/lhwdev/kt-ui
[dropped, toy project] A multiplatform declarative UI framework for Kotlin. Just use Jetpack Compose.
https://github.com/lhwdev/kt-ui
declarative-ui framework kotlin kotlin-mpp kotlin-multiplatform ui wip
Last synced: about 1 month ago
JSON representation
[dropped, toy project] A multiplatform declarative UI framework for Kotlin. Just use Jetpack Compose.
- Host: GitHub
- URL: https://github.com/lhwdev/kt-ui
- Owner: lhwdev
- License: apache-2.0
- Created: 2019-11-10T10:32:35.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-03-02T13:05:25.000Z (over 4 years ago)
- Last Synced: 2025-06-20T10:49:06.244Z (4 months ago)
- Topics: declarative-ui, framework, kotlin, kotlin-mpp, kotlin-multiplatform, ui, wip
- Language: Kotlin
- Homepage:
- Size: 5.8 MB
- Stars: 7
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# [WIP] kt-ui
> In fact, I'm writing this for fun(reinventing the wheel is always exciting!)
> I acknowledge that lots of codes came from [Jetpack compose](https://android.googlesource.com/platform/frameworks/support/+/refs/heads/androidx-master-dev/compose/) (mostly the compiler plugin).
> This project can be a great example for beginners to kotlin compiler plugin(IR backend) and contains some useful tools(irExpressions, colorful ir dumper, ir source printer which prints ir into almost kotlin code as-is(with highlighting))
>
> Disclaimer: This is not for use (so far) as it is poorly written`kt-ui` is a declarative multiplatform UI framework for Kotlin.
```kotlin
// currently just pseudo code@Widget
fun Main() {
Text("Hello, world!")
}
```