Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
20 views

I can't start the Server-application after executing the Desktop- or Web-application in a Compose Multiplatform project. This makes it hard to test the server coming online and going offline while ...
Domenico Sanfilippo's user avatar
2 votes
0 answers
38 views

After using VNDocumentCameraViewController in Compose Multiplatform iOS, all popup-based components (AlertDialog, DatePickerDialog, ExposedDropdownMenuBox) stop working. Open AlertDialog - works fine ...
Laya's user avatar
  • 21
1 vote
0 answers
153 views

I'm developing a typical chat screen, with the text input at the bottom. The app has a bottom bar with tabs and a topbar. I'm struggling at getting what I understand to be the expected behavior (...
ixx's user avatar
  • 32.3k
0 votes
0 answers
69 views

My screen has an input field at the bottom. When opening the keyboard (Android, iOS), it pushes the input to the top so it stays above the keyboard. The baseline of the input is above the keyboard. ...
ixx's user avatar
  • 32.3k
1 vote
0 answers
49 views

I am developing a desktop application for Windows using Compose Multiplatform and implementing an external web login flow (e.g., OAuth). After a successful login in the browser, the service needs to ...
ChoiUS's user avatar
  • 11
5 votes
3 answers
332 views

Material3 rememberDatePickerState() crashing in desktop and iOS platforms. I am using kotlin = "2.2.10" version for my Kotlin Compose Multiplatform (KMP/CMP) project. It runs fine on android ...
Touhid's user avatar
  • 1,754
1 vote
1 answer
59 views

In Compose Multiplatform, can I specify the order in which localized strings.xml files (e.g., values-ar, values-de, etc.) are processed, so that it can be deterministic. Right now i have a build that ...
truthsayer's user avatar
2 votes
1 answer
158 views

I recently updated my project to Compose Multiplatform 1.9.0-beta03 and Material3 1.9.0-beta03. After the update, I can no longer access: CircularWavyProgressIndicator ButtonDefaults....
Vivek Modi's user avatar
  • 7,859
0 votes
1 answer
66 views

I wanted to make header sticky header for relevant header. Which is expandable. data class Section( val header: String, val items: List<String> ) val sections = listOf( Section(&...
Surendra's user avatar
0 votes
0 answers
86 views

I have kmm app with 1.8.0 compose-multiplatform and I've added ui-backhandler = { module = "org.jetbrains.compose.ui:ui-backhandler", version.ref = "compose-multiplatform" } Code ...
Aleksey Khokhrin's user avatar
0 votes
1 answer
88 views

I have a Kotlin Project using Compose for Desktop on Windows (IntelliJ). I built the installer with the Gradle tasks provided by the libary. When installing the program, I want the installer to copy a ...
Alex's user avatar
  • 31
0 votes
0 answers
53 views

I want to make a common dropdown for two TextField. I have manage to do something like following. But there is a problem with focusing. When I click again on the second TextField to open dropdown, it ...
Surendra's user avatar
1 vote
1 answer
595 views

Full reproducible example here I'm working on a Jetpack Compose Multiplatform project. In my module ui-system, I have a drawable located at: ui-system/src/commonMain/composeResources/drawable/compose-...
Yannick's user avatar
  • 6,189
1 vote
1 answer
64 views

There are two functions to be used as the entry point for a CMP desktop application: fun usage application() fun main() = application { ... } awaitApplication() suspend fun main() = awaitApplication { ...
Mahozad's user avatar
  • 26.3k
2 votes
2 answers
131 views

I'm working on Compose Multiplatform (CMP) project that targets Android, iOS, and JS (browser) platforms. I'm trying to integrate Sentry to track logs and errors across android and ios platforms. I've ...
melikaafrakhteh's user avatar
0 votes
1 answer
100 views

I have 2 language support in my app. Language files are arranged like below: composeApp/src/commonMain/composeResources/values/lang.xml composeApp/src/commonMain/composeResources/values-bn/lang.xml ...
Touhid's user avatar
  • 1,754
0 votes
0 answers
42 views

package goodeva.smartsafety.opa.kmp.presentation.feature.upload import platform.UIKit.* import platform.Foundation.* import platform.CoreGraphics.* import kotlinx.cinterop.* actual class ...
Muhammad Zaki Hanif's user avatar
2 votes
1 answer
97 views

The setup In Jetpack Compose, I have a Column (gray) with two elements, a long text (yellow) and a short text (cyan): @Composable @Preview fun Foo() = Column( Modifier .background(Color....
axolotlKing0722's user avatar
1 vote
2 answers
758 views

I'm working on a Kotlin Multiplatform project using Compose Multiplatform for iOS. My current implementation leaves the status bar area empty/blank, and I want to achieve true edge-to-edge display ...
Pawandeep Singh's user avatar
0 votes
0 answers
114 views

The endpoint sends Server Sent Events, as strings and it is reactive(Same as Firebase). Each record corresponds to one line(or one string), then I map it to the actual data class. I want it to create ...
Mario Manhique's user avatar
0 votes
0 answers
40 views

I'm making a Compose Multiplatform project. Everything works fine, but when i want to view the source code of some classes/files, i get this: @Composable public final fun DragHandle( modifier: ...
Error's user avatar
  • 9
0 votes
1 answer
100 views

In a typical android project, I can change the position of my dialog as follows: Dialog( onDismissRequest = onDismiss, properties = DialogProperties(usePlatformDefaultWidth = false) ...
Pierre Vieira's user avatar
1 vote
1 answer
67 views

I'm trying to identify the mouse "back" event in compose multiplatform using the pointerInput modifier from this answer. But it is not working. I have already tried to debug it, but it seems ...
Pierre Vieira's user avatar
-1 votes
1 answer
312 views

I'm developing a Compose Multiplatform app and want to use the same PNG drawable assets for both Android and iOS. So far I understand, I need to use the same PNGs for both platforms like this: For ...
Mark Delphi's user avatar
  • 1,809
2 votes
0 answers
84 views

I tested the following code in IOS, and it seems weird for me in Simulator. @Composable fun FakeScreen() { LaunchedEffect(Unit) { launch { var count = 0 while(true)...
Irsath Kareem's user avatar

1
2 3 4 5
8