No description
Find a file
Ben Martin 063ec7632f
Some checks are pending
Build / build (push) Waiting to run
feat: improve UI with sentiment selection, input field, and feedback submission (#17)
This commit enhances the UI of the application with the following changes:
- Adds sentiment selection via `FilterChip` components with leading icons and friendly names for each `Sentiment` option.
- Introduces a `TextField` for user comments.
- Implements feedback submission, which resets the selected sentiment and clears the comment field upon clicking the button.
- Shows a snackbar to display feedback success after the button is clicked.
- Improves `FilterChip` styling with `ChipDefaults` properties and uses larger font size.
- Uses `Scaffold` to provide a structure for the app.

Closes #4

Reviewed-on: #17
Co-authored-by: Ben Martin <ben.martin@sky.uk>
Co-committed-by: Ben Martin <ben.martin@sky.uk>
2025-01-21 14:37:45 +00:00
.fleet Initial commit 2025-01-20 22:23:52 +00:00
.github/workflows fix: add release action (#12) 2025-01-21 10:28:10 +00:00
composeApp feat: improve UI with sentiment selection, input field, and feedback submission (#17) 2025-01-21 14:37:45 +00:00
gradle Initial commit 2025-01-20 22:23:52 +00:00
iosApp Initial commit 2025-01-20 22:23:52 +00:00
.gitignore Initial commit 2025-01-20 22:23:52 +00:00
build.gradle.kts Initial commit 2025-01-20 22:23:52 +00:00
gradle.properties Initial commit 2025-01-20 22:23:52 +00:00
gradlew Initial commit 2025-01-20 22:23:52 +00:00
gradlew.bat Initial commit 2025-01-20 22:23:52 +00:00
README.md Initial commit 2025-01-20 22:23:52 +00:00
renovate.json chore: Configure Renovate (#16) 2025-01-21 14:32:24 +00:00
settings.gradle.kts Initial commit 2025-01-20 22:23:52 +00:00

This is a Kotlin Multiplatform project targeting Android, iOS.

  • /composeApp is for code that will be shared across your Compose Multiplatform applications. It contains several subfolders:

    • commonMain is for code thats 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 Apples CoreCrypto for the iOS part of your Kotlin app, iosMain would be the right folder for such calls.
  • /iosApp contains iOS applications. Even if youre 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.

Learn more about Kotlin Multiplatform