python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
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
How to implement Accessibility in Desktop Compose
I am building an app with Desktop Compose Multiplatform for Windows and MacOS platform.
I need to add accessibility support for users.
In Android we have Accessibility Scanner and TalkBack to announce...
SVK
Votes: 0
Answers: 0
Unable to design UI Layout in Desktop for Compose
I am developing UI Layout for an app based on Compose for Desktop
It consist of few check boxes.
But there is no functionality in Compose for Desktop to align views to each other.
In Android, we can u...
SVK
Votes: 0
Answers: 2
Unresolved reference: ExposedDropdownMenuBox in Compose for Desktop
I need to implement a drop down menu for Windows App which is based on Compose for Desktop
For that I am trying to use ExposedDropdownMenuBox
But I am getting error:
Unresolved reference: ExposedDrop...
SVK
Votes: 0
Answers: 1