python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Android Jetpack Compose Lazy column items with index?
How to access the current item's index of LazyColumn in Jetpack Compose.
LazyColumn {
items(viewModel.list) { item ->
// Here I want to get the index of the item
Timber.d("item -...
Frank Mung No
Votes: 0
Answers: 1
How to properly use Jetpack Compose inside BottomSheetDialogFragment?
For example, I have MyBottomSheetDialogFragment with Compose LazyColumn code in the application:
class MyBottomSheetDialogFragment : BottomSheetDialogFragment() {
override fun onCreateView(
...

Mike
Votes: 0
Answers: 2
Why is my text clipped in each row of this Android Jetpack Compose list?
I have created a LazyColumn of stations and when the text is to long in a row it clips the text, even though I am specifying overflow = TextOverflow.Ellipsis. How do I fix this?
@Composable
fun Stati...
Andrew Stromme
Votes: 0
Answers: 1