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

I am building a Kotlin Multiplatform app where I want to use shared UI with Compose for both Android and iOS. However, I need some native views with their own state for certain parts of the app, so I’...
AlexelNintendero's user avatar
1 vote
0 answers
120 views

I'm building a Compose Multiplatform (CMP) app using Jetpack Compose for iOS and trying to capture a screenshot of a composable UI. The screenshot works, but the colors are wrong, In the Ui the Error ...
melikaafrakhteh's user avatar
0 votes
1 answer
105 views

I'm trying to create a Compose multi-platform library for shared UI components between iOS, Android, and Desktop. Unfortunately I'm not able to find any source or tutorial to help me to create one. ...
Neeraj Kumar's user avatar
0 votes
1 answer
180 views

I'm unable to render a Compose Multiplatform view inside a SwiftUI Form. However, it works outside of the Form. SwiftUI view: struct ContentView: View { var body: some View { Form { ...
Oskar Persson's user avatar
0 votes
1 answer
202 views

I'm trying to use Compose Multiplatform UI in an iOS Share Extension, but the Compose content only shows a blank white screen. Here's what I've observed: The UIViewController is sized correctly (the ...
Serhii Petrenko's user avatar
1 vote
0 answers
231 views

I'm trying to use CupertinoTimeDatePicker on a compose multiplatform project. Whenever I do that, I always get this error: java.lang.NoSuchMethodError: No static method rememberSnapFlingBehavior(...
Ashaluwala Kazeem's user avatar
8 votes
1 answer
787 views

I’m working on a Compose Multiplatform project, and I’m looking to implement smooth native iOS navigation specifically for the iOS part of the app, with support for swipe-back gestures (like the ...
rlaj's user avatar
  • 394
3 votes
0 answers
251 views

Currently, I working in the Compose Multiplatform and want to add "Kotlin Multiplatform Shared Module". The name of module is ":feature:learning", I already add dependency to ...
fahrizal89's user avatar
2 votes
1 answer
907 views

I'm using KMM library in my project. I want to access local json files in both iOS and Android from shared resources. I don't want to use files from iOS App. I have written following code in shared/...
Priyanka Kadam's user avatar
0 votes
1 answer
481 views

As we all know that now we can develop iOS applications in Kotlin Multiplatform (KMP) with shared UI or using Compose Multiplatform (CMP). Now CMP is currently in Beta so can we publish compose ...
Atul Sharma's user avatar
  • 1,167
0 votes
1 answer
134 views

I have integrated the Camera Scanner from AVFoundation into a Compose Multiplatform project. The scanner scans a few times (randomly 5-6 times) before ceasing to scan further, although the live ...
Murodjon Abdukholikov's user avatar
2 votes
1 answer
644 views

I implemented the lifecycle detector for iOS in the Compose Multiplatform Project using the below code. val lifecycleDelegate: ComposeUIViewControllerDelegate = object : ...
Murodjon Abdukholikov's user avatar
8 votes
5 answers
7k views

I want to change the status bar color. I have tried some code in App.kt file MaterialTheme{ } But it's not affect on statusbar color. I want to change the status bar color like the background of then ...
Niloy Sarker's user avatar