Lint UI for Compose Desktop

A Compose Desktop UI framework supporting global theme control. (aka LintUI)
Introduce
This is a UI framework developed for Compose Desktop (on Material Design 3),
and it integrates many features that normal applications
should have (such as data persistence).
This UI framework will remain open source and free.
Features
Screen shoot

Use this library in your project
Before that, you can run the example we provided for you to see the concrete effect.
./gradlew desktopRun -DmainClass=MainKt --quiet
LintUI framework version requirements
1. Configure the Maven central warehouse for the project.
dependencyResolutionManagement {
repositories {
google()
mavenCentral()
maven(url = "https://jitpack.io")
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
}
}
2. Import the [lint-compose-ui] dependency.
dependencies {
implementation("io.github.lumkit:lint-compose-ui:1.0.7")
implementation("io.github.lumkit:lint-compose-ui-desktop:1.0.7")
}
3. Start writing your first desktop application
How to use some built-in APIs.
Excellent cited framework or repositories (Rank insensitive)
End