├── .gitignore ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── preview.gif ├── settings.gradle.kts └── src └── main ├── kotlin ├── domain │ └── models.kt ├── main.kt └── utils.kt └── resources └── fonts └── starwars.otf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch8n/Compose-Stars/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch8n/Compose-Stars/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official 2 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch8n/Compose-Stars/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch8n/Compose-Stars/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch8n/Compose-Stars/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch8n/Compose-Stars/HEAD/gradlew.bat -------------------------------------------------------------------------------- /preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch8n/Compose-Stars/HEAD/preview.gif -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch8n/Compose-Stars/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /src/main/kotlin/domain/models.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch8n/Compose-Stars/HEAD/src/main/kotlin/domain/models.kt -------------------------------------------------------------------------------- /src/main/kotlin/main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch8n/Compose-Stars/HEAD/src/main/kotlin/main.kt -------------------------------------------------------------------------------- /src/main/kotlin/utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch8n/Compose-Stars/HEAD/src/main/kotlin/utils.kt -------------------------------------------------------------------------------- /src/main/resources/fonts/starwars.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch8n/Compose-Stars/HEAD/src/main/resources/fonts/starwars.otf --------------------------------------------------------------------------------