diff --git a/README.md b/README.md index 4220f0e..5fd7ebe 100644 --- a/README.md +++ b/README.md @@ -1,27 +1,2 @@ -This is a Kotlin Multiplatform project targeting Desktop (JVM). - -* [/composeApp](./composeApp/src) is for code that will be shared across your Compose Multiplatform applications. - It contains several subfolders: - - [commonMain](./composeApp/src/commonMain/kotlin) 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, - the [iosMain](./composeApp/src/iosMain/kotlin) folder would be the right place for such calls. - Similarly, if you want to edit the Desktop (JVM) specific part, the [jvmMain](./composeApp/src/jvmMain/kotlin) - folder is the appropriate location. - -### Build and Run Desktop (JVM) Application - -To build and run the development version of the desktop app, use the run configuration from the run widget -in your IDE’s toolbar or run it directly from the terminal: -- on macOS/Linux - ```shell - ./gradlew :composeApp:run - ``` -- on Windows - ```shell - .\gradlew.bat :composeApp:run - ``` - ---- - -Learn more about [Kotlin Multiplatform](https://www.jetbrains.com/help/kotlin-multiplatform-dev/get-started.html)… \ No newline at end of file +# Meow! +to be writte... \ No newline at end of file diff --git a/composeApp/src/jvmMain/composeResources/drawable/compose-multiplatform.xml b/composeApp/src/jvmMain/composeResources/drawable/compose-multiplatform.xml deleted file mode 100644 index 1ffc948..0000000 --- a/composeApp/src/jvmMain/composeResources/drawable/compose-multiplatform.xml +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/composeApp/src/jvmMain/kotlin/world/pinkhaj/beatsandbits/App.kt b/composeApp/src/jvmMain/kotlin/world/pinkhaj/beatsandbits/App.kt index 87af292..270531e 100644 --- a/composeApp/src/jvmMain/kotlin/world/pinkhaj/beatsandbits/App.kt +++ b/composeApp/src/jvmMain/kotlin/world/pinkhaj/beatsandbits/App.kt @@ -1,7 +1,6 @@ package world.pinkhaj.beatsandbits import androidx.compose.animation.AnimatedVisibility -import androidx.compose.foundation.Image import androidx.compose.foundation.background import androidx.compose.foundation.layout.Column import androidx.compose.foundation.layout.fillMaxSize @@ -13,11 +12,8 @@ import androidx.compose.material3.Text import androidx.compose.runtime.* import androidx.compose.ui.Alignment import androidx.compose.ui.Modifier -import org.jetbrains.compose.resources.painterResource import org.jetbrains.compose.ui.tooling.preview.Preview -import beatsandbits.composeapp.generated.resources.Res -import beatsandbits.composeapp.generated.resources.compose_multiplatform @Composable @Preview @@ -40,7 +36,6 @@ fun App() { modifier = Modifier.fillMaxWidth(), horizontalAlignment = Alignment.CenterHorizontally, ) { - Image(painterResource(Res.drawable.compose_multiplatform), null) Text("Compose: $greeting") } }