diff --git a/README.md b/README.md index 1f75821..077003f 100644 --- a/README.md +++ b/README.md @@ -1,24 +1,55 @@ -This is a Kotlin Multiplatform project targeting Android, iOS, Web, Desktop. +# Kotlin Dictionary 📚 -* `/composeApp` is for code that will be shared across your Compose Multiplatform applications. - It contains several subfolders: - - `commonMain` is for code that’s common for all targets. - - Other folders are for Kotlin code that will be compiled for only the platform indicated in the folder name. - For example, if you want to use Apple’s CoreCrypto for the iOS part of your Kotlin app, - `iosMain` would be the right folder for such calls. +![Kotlin Dictionary Banner](assets/banner.png) -* `/iosApp` contains iOS applications. Even if you’re sharing your UI with Compose Multiplatform, - you need this entry point for your iOS app. This is also where you should add SwiftUI code for your project. +--- + +Kotlin Dictionary is a student-led, cross-platform app designed to help learners dive deep into the Kotlin programming language. It serves as an interactive reference where you can explore topics with clear explanations and reinforce your learning through quizzes. +✨ _The data is powered by AI tools which help automate content generation, ensure consistency, and speed up the documentation._ + +--- + +## About This Project + +This project is part of a collaborative learning effort by students passionate about Kotlin, Jetpack Compose, and cross-platform development. It is being built as we explore and experiment with Kotlin Multiplatform capabilities. +We're exploring core Kotlin concepts and building this app as a way to document our journey, reinforce what we learn, and share it with others along the way. + +The Kotlin Dictionary project is being guided by [@RajashekarRaju](https://github.com/RajashekarRaju), who mentors contributors throughout the process. This includes: + +- Providing architectural guidance +- Reviewing contributions +- Suggesting improvements +- Promoting best practices in Kotlin development + +We're all learning together, and the code evolves as we grow! + +--- -Learn more about [Kotlin Multiplatform](https://www.jetbrains.com/help/kotlin-multiplatform-dev/get-started.html), -[Compose Multiplatform](https://github.com/JetBrains/compose-multiplatform/#compose-multiplatform), -[Kotlin/Wasm](https://kotl.in/wasm/)… +## 🎨 Concept Design + +Here’s an early concept image illustrating the app’s design: + +![Concept Design](assets/img_concept.png) + +--- + +## 📱 Screenshots + +Here are a couple of early previews from the Android version of the app: + +

+ Topic Screen + Detail Screen +

+ +> *More previews coming soon as the UI progresses!* + +--- -We would appreciate your feedback on Compose/Web and Kotlin/Wasm in the public Slack channel [#compose-web](https://slack-chats.kotlinlang.org/c/compose-web). -If you face any issues, please report them on [GitHub](https://github.com/JetBrains/compose-multiplatform/issues). +## ⚠️ Disclaimer -You can open the web application by running the `:composeApp:wasmJsBrowserDevelopmentRun` Gradle task. +This is an educational project developed by students. Expect rapid changes, experiments, and ongoing improvements as part of the learning journey. 😊 --- @@ -34,4 +65,7 @@ You can open the web application by running the `:composeApp:wasmJsBrowserDevelo - [ ] Introduce common @Preview annotations for reusable Composable previews. - [ ] Implement section-wise scroll behavior on the `Detail Screen` for better navigation. - [ ] Add inline code formatting support for syntax display on the `Detail Screen`. -- [ ] Replace the search icon on the `Topic Card` to improve visual consistency. \ No newline at end of file +- [ ] Replace the search icon on the `Topic Card` to improve visual consistency. +- [ ] Implement caching on the `Detail Screen` to store previously viewed topic data. +- [ ] Switch AI integration from OpenAI to Gemini. +- [ ] Refactor network layer for cleaner architecture. diff --git a/assets/banner.png b/assets/banner.png new file mode 100644 index 0000000..bc152fa Binary files /dev/null and b/assets/banner.png differ diff --git a/assets/img_concept.png b/assets/img_concept.png new file mode 100644 index 0000000..510204c Binary files /dev/null and b/assets/img_concept.png differ diff --git a/assets/img_detail_screen_variables.png b/assets/img_detail_screen_variables.png new file mode 100644 index 0000000..07d6bb2 Binary files /dev/null and b/assets/img_detail_screen_variables.png differ diff --git a/assets/img_topic_screen.png b/assets/img_topic_screen.png new file mode 100644 index 0000000..12bccb3 Binary files /dev/null and b/assets/img_topic_screen.png differ