Calling View LaunchedEffect multiple times inside LazyColumn

I want to trigger the LaunchedEffect event in only one of the views in the LazyColumn, but the LaunchedEffect is triggered in all views, so the UI of all views changes. LazyColumn( horizontalAlignment = Alignment.CenterHorizontally,

Continue reading →

Custom Composable broke after updating compose-plugin

i am kinda new to all of this and have a problem with one of my Kotlin multiplatform Projects. In order to share resources between Android and Desktop i updated my compose-plugin from 1.5.12 to 1.6.0 and used this new generated Res class

Continue reading →

UI mobile tests - which would be the best tool for a project with compose functions and one activity

trying to figure out which is the best tool to create mobile automation tests for a project that uses compose functions written in Kotlin in Android studio Have to mention that we want the tests to be like end user flows, login + start w

Continue reading →

How to build an android app which will convert pdf to audiobooks using kotlin and jectpack compose?

! Is it possible to convert an pdf to audio book... How can I run python code on cloud and communicate it with android project I am an android developer intend to create an pdf to audio converter app. But I am clueless how can I create

Continue reading →

nested horizontalPager Sliding not smooth

i hava a nested HorizontalPager like this: HorizontalPager( count = list.size ) { HorizontalPager( count = list2.size ) { //items } } when i slide the page in the outPager border ,it seem like the inner pager bloc

Continue reading →

jetpack compose - How to do state hoisting for a parsed complex object?

So, in my dataset, I'm storing a special string. This string must be parsed into a tree for user manipulation (view, edit, delete, merge, adding nodes ..etc). For the node addition and deletion, I need to get the cursor position from the

Continue reading →

How to get similar animation used in snapseed app

I want to get a similar animation effect whereby the dialog box moves up and down, and the text is fixed to the centre. See image attached The text should be highlighted blue at the centre when dialog box/ card moves to the text. I want

Continue reading →