Skip to main content

Questions tagged [android-jetpack-compose]

Jetpack Compose is Android’s modern toolkit for building native declarative UI made by Google. If you're targeting desktop with Compose for Desktop, use both this and [compose-desktop] tags.

android-jetpack-compose
0 votes
0 answers
12 views

Why isn't my data updating in child composables?

Im collecting data from my db in my viewmodel. I know its being updated in BottomSheetEditContent, but i don't know how to make it show its's value (the one collected from viewmodel) in child ...
Michal Rymarski's user avatar
0 votes
0 answers
13 views

How to add a click listener to an Image created with DrawScope drawImage?

I'm trying to make an interactive map (scheme) with clickable markers. To handle gestures I use ZoomableImage from implementation("de.mr-pine.utils:zoomables:1.4.0"). To draw markers I use ...
exprnc's user avatar
  • 1
1 vote
1 answer
9 views

Unable to create updated UI with new image in JetPack Compose

I'm trying to create simple Dice Roller JetPack Compose App. I create an Image compose and button compose. Whenever i click on the button, log statement shows button is clicked but I'm unable to ...
Aamir Khan's user avatar
0 votes
0 answers
19 views

How to make a Drag and Drop with LazyColumn in Jetpack compose?

I'm making a feature called DragAndDrop with LazyColumn. To implement this feature, I referred to an article by Suraj Sau. The article is great but it's slightly different from what i want to make. ...
CodingBruceLee's user avatar
0 votes
1 answer
29 views

How i can re-execute StateFlow in ViewModel Android? I have use case where i needs to do refresh of data

I am trying re-execute StateFlow in ViewModel (refresh something, new API request...), but it not work. This is my simple example about counter: Viewmodel class CounterViewModel( private val ...
Thai Manh's user avatar
0 votes
0 answers
18 views

Unresolved reference when adding module dependency in Gradle for Compose Multiplatform project

I'm having trouble resolving a module dependency in my Compose Multiplatform project. I have a module named designSystem under the path composeApp:core:designSystem, and I'm trying to include it in my ...
Hossam Sadekk's user avatar
0 votes
1 answer
27 views

Composable inheritance... how to add padding to inherited content?

I want to do some kind of Composable Inheritance. I need a parent composable with a Scaffold, and the children must have the inner content to the scaffold. How can I apply the innerPadding to the ...
NullPointerException's user avatar
0 votes
1 answer
22 views

How to change the color of the TextField cursor handle in Compose Material 3?

Specifically, the CompositionLocalProvider approach works for a BasicTextField but not for a TextField: val customTextSelectionColors = TextSelectionColors( handleColor = Red, ...
Peter's user avatar
  • 737
-1 votes
0 answers
9 views

Mongo DB Driver for Android Native Jetpack Compose. I do not want to use Mongo DB Realm or Atlas App [closed]

Mongo DB Driver for Android Native Jetpack Compose. I do not want to use Mongo DB Realm or Atlas App. Expecting to get a library or mongo db driver. just like pymongo for python. I do not want to use ...
Rasik Mohammed's user avatar
1 vote
0 answers
25 views

How to keep the button over the other elements even if it is disabled in Jetpack Compose?

I have a screen where I display a list of items: Scaffold( content = { //List of items }, floatingActionButton = { Button( onClick = { if (...
Always Learner's user avatar
0 votes
0 answers
26 views

How to create LazyColumn with both draggable and non-draggable titles and dividers?

I found an example of simple lazy lists with draggable items and tried to modify it to suit my needs. I need to be able to list the indices of the elements on which dragging doesn't work and, if there ...
Данил Бессонов's user avatar
0 votes
2 answers
36 views

TextField data is not getting clear

When the user enters a password value and cancels the dialog, the dialog is pre-filled with the previous password, but the email is successfully cleared. However, the password is not cleared. If I ...
Shivam's user avatar
  • 182
0 votes
0 answers
11 views

How to know if item is highlighted by TalkBack frame?

I'm working on accessibility issues in my app, written in Kotlin using Jetpack Compose. I have a bug that I think I can solve if I could know when a UI component is highlighted with a TalkBack frame - ...
dodgeRam's user avatar
0 votes
0 answers
29 views

Android. How to show button above keyboard on bottom sheet dialog?

I'm using BottomSheetDialogFragment with composable content: override fun onCreateView( inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?, ): ...
testivanivan's user avatar
  • 1,318
1 vote
1 answer
37 views

Compose: Using SnapshotStateMap to avoid recomposition of every item in a map

I have an app that reads properties from a file. The file can be changed outside of my application, it can be deleted or fully replaced. My goal is to read the .properties file and show a preferences ...
kristyna's user avatar
  • 1,624

15 30 50 per page
1
2 3 4 5
880