python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
ComposeView with dynamic height flickering inside ConstraintLayout
I have a ComposeView inside a ConstraintLayout like that:
<androidx.compose.ui.platform.ComposeView
android:id="@+id/compose"
android:layout_width="match_parent&q...
g_lasso
Votes: 0
Answers: 1
How to nicely init state from database in Jetpack Compose?
I have a Jetpack Compose (desktop) app with a database, and I want to show some UI based on data from the db:
val data = remember { mutableStateListOf<Dto>() }
Column {
data.forEach { /* ma...

Jorn
Votes: 0
Answers: 2
Jetpack Compose Vertical Scrolling is interrupted by Horizontal Scrolling
I have create a Column having 5 Rows, Column has vertical scrolling enabled and Rows has horizontal scrolling enabled.
Sometimes when I try to fling or scroll vertically, Rows consume the gesture and ...

Chetan Gupta
Votes: 0
Answers: 0
how to make cursor on BasicTextField be centered on jetpack compose?
I have a problem, where I need a BasicTextField to customize the TextField as I want.
Here I have tried to do a custom, but there is a problem with the cursor in the BasicTextField, it doesn't center ...

Julsapargi Nursam
Votes: 0
Answers: 1